[SCM] libav/experimental: remove useless declaration
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:10:29 UTC 2013
The following commit has been merged in the experimental branch:
commit a4813b671a8c662cfbace6c38fab03e2335e947b
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date: Sun Dec 16 18:24:32 2007 +0000
remove useless declaration
Originally committed as revision 11238 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 45856fc..6b1db6a 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[];
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list