Commit a4813b67 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless declaration

Originally committed as revision 11238 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 73d07c27
...@@ -135,12 +135,10 @@ typedef struct MOVContext { ...@@ -135,12 +135,10 @@ typedef struct MOVContext {
0: continue to parse next atom 0: continue to parse next atom
-1: error occured, exit -1: error occured, exit
*/ */
typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom);
/* links atom IDs to parse functions */ /* links atom IDs to parse functions */
typedef struct MOVParseTableEntry { typedef struct MOVParseTableEntry {
uint32_t type; uint32_t type;
mov_parse_function func; int (*func)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom);
} MOVParseTableEntry; } MOVParseTableEntry;
static const MOVParseTableEntry mov_default_parse_table[]; static const MOVParseTableEntry mov_default_parse_table[];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment