diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-09 10:14:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-12-09 08:40:29 +0100 |
commit | e2274aa555f023e4f4e4819bf29b2d7e0adec7d5 (patch) | |
tree | 9baf6b484dad9c028cb0eadb810cfb7955955e1a /libavcodec/mjpegdec.h | |
parent | f0b234ab9e406efee85c17eb435db646092a943b (diff) | |
download | ffmpeg-e2274aa555f023e4f4e4819bf29b2d7e0adec7d5.tar.gz |
mjpegdec: use the AVFrame API properly.
Diffstat (limited to 'libavcodec/mjpegdec.h')
-rw-r--r-- | libavcodec/mjpegdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpegdec.h b/libavcodec/mjpegdec.h index 36598dd5e0..e3adc581f4 100644 --- a/libavcodec/mjpegdec.h +++ b/libavcodec/mjpegdec.h @@ -84,7 +84,7 @@ typedef struct MJpegDecodeContext { int h_max, v_max; /* maximum h and v counts */ int quant_index[4]; /* quant table index for each component */ int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */ - AVFrame picture; /* picture structure */ + AVFrame *picture; /* picture structure */ AVFrame *picture_ptr; /* pointer to picture structure */ int got_picture; ///< we found a SOF and picture is valid, too. int linesize[MAX_COMPONENTS]; ///< linesize << interlaced |