Browse code

isom: fix redundant redeclaration of ff_mov_read_chan().

Silence a GCC warning. A leftover of the disabled version is still
available in lavf/isom.c.

Clément Bœsch authored on 2012/09/30 08:22:18
Showing 2 changed files
... ...
@@ -28,6 +28,7 @@
28 28
 #include "aiff.h"
29 29
 #include "isom.h"
30 30
 #include "id3v2.h"
31
+#include "mov_chan.h"
31 32
 
32 33
 #define AIFF                    0
33 34
 #define AIFF_C_VERSION1         0xA2805140
... ...
@@ -204,7 +204,6 @@ int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb, MOVAtom atom);
204 204
 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
205 205
 
206 206
 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
207
-int ff_mov_read_chan(AVFormatContext *s, AVIOContext *pb, AVStream *st, int64_t size);
208 207
 void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
209 208
 
210 209
 #endif /* AVFORMAT_ISOM_H */