From a4813b671a8c662cfbace6c38fab03e2335e947b Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 16 Dec 2007 18:24:32 +0000 Subject: [PATCH] remove useless declaration Originally committed as revision 11238 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 45856fc..6b1db6a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -135,12 +135,10 @@ typedef struct MOVContext { 0: continue to parse next atom -1: error occured, exit */ -typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); - /* links atom IDs to parse functions */ typedef struct MOVParseTableEntry { uint32_t type; - mov_parse_function func; + int (*func)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); } MOVParseTableEntry; static const MOVParseTableEntry mov_default_parse_table[]; -- 2.7.4