aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-12-16 18:24:32 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-12-16 18:24:32 +0000
commita4813b671a8c662cfbace6c38fab03e2335e947b (patch)
treebd82c6df73715d0d62092648ea16f78304337b4b /libavformat
parent73d07c275adc939b967737d31927784857efd153 (diff)
downloadffmpeg-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.c4
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[];