remove useless declaration
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 16 Dec 2007 18:24:32 +0000 (18:24 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 16 Dec 2007 18:24:32 +0000 (18:24 +0000)
Originally committed as revision 11238 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mov.c

index 45856fc..6b1db6a 100644 (file)
@@ -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[];