diff options
author | Juanjo <pulento@users.sourceforge.net> | 2002-05-09 05:42:27 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2002-05-09 05:42:27 +0000 |
commit | 564ef23d49b394cb549fbaca28533b7eb90decc4 (patch) | |
tree | 5935865072e46459b90c9a5fd8b43323ac1e2517 | |
parent | 3e12d48a89e3385a7da76cc086333359911c2131 (diff) | |
download | ffmpeg-564ef23d49b394cb549fbaca28533b7eb90decc4.tar.gz |
- Warning fix.
Originally committed as revision 476 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/mjpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mjpeg.c b/libavcodec/mjpeg.c index 6db3d5ec7f..1f18f4086b 100644 --- a/libavcodec/mjpeg.c +++ b/libavcodec/mjpeg.c @@ -608,6 +608,8 @@ typedef struct MJpegDecodeContext { skip_bits(gb, 8); \ } +static int mjpeg_decode_dht(MJpegDecodeContext *s, UINT8 *buf, int buf_size); + static void build_vlc(VLC *vlc, const UINT8 *bits_table, const UINT8 *val_table, int nb_codes) { |