diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 02:36:00 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 02:36:00 +0000 |
commit | d9747e29b657f6d999327ee2f2e48a0fe176b87c (patch) | |
tree | dbbfd632f170812966c45b070075a17f5543f4c1 /libavformat/iff.c | |
parent | ae2c69438881ecd9f3ff7dffaf66e62379279820 (diff) | |
download | ffmpeg-d9747e29b657f6d999327ee2f2e48a0fe176b87c.tar.gz |
IFF: move ff_cmap_read_palette() prototype to a header file
Originally committed as revision 22307 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r-- | libavformat/iff.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c index f08700530f..62ee16d7a0 100644 --- a/libavformat/iff.c +++ b/libavformat/iff.c @@ -29,6 +29,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcodec/iff.h" #include "avformat.h" #define ID_8SVX MKTAG('8','S','V','X') @@ -223,8 +224,6 @@ static int iff_read_header(AVFormatContext *s, return 0; } -int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal); - static int iff_read_packet(AVFormatContext *s, AVPacket *pkt) { |