[FFmpeg-cvslog] r11238 - trunk/libavformat/mov.c

bcoudurier subversion
Sun Dec 16 19:24:32 CET 2007


Author: bcoudurier
Date: Sun Dec 16 19:24:32 2007
New Revision: 11238

Log:
remove useless declaration

Modified:
   trunk/libavformat/mov.c

Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c	(original)
+++ trunk/libavformat/mov.c	Sun Dec 16 19:24:32 2007
@@ -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[];




More information about the ffmpeg-cvslog mailing list