diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-16 18:24:32 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-12-16 18:24:32 +0000 |
commit | a4813b671a8c662cfbace6c38fab03e2335e947b (patch) | |
tree | bd82c6df73715d0d62092648ea16f78304337b4b /libavformat | |
parent | 73d07c275adc939b967737d31927784857efd153 (diff) | |
download | ffmpeg-a4813b671a8c662cfbace6c38fab03e2335e947b.tar.gz |
remove useless declaration
Originally committed as revision 11238 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 45856fc0d2..6b1db6a830 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[]; |