diff options
author | anatoly <anatoly.nenashev@ovsoft.ru> | 2011-03-27 22:16:25 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-03-30 07:18:34 +0200 |
commit | e0e3b8b297bae5144f23fd4b46a1309857040b63 (patch) | |
tree | 93c5bd8d69c498c14811c0e144fe578622c4d6e9 /libavcodec/mjpegdec.h | |
parent | f16055eedf7999bb0c754dfde47d8c726b94c847 (diff) | |
download | ffmpeg-e0e3b8b297bae5144f23fd4b46a1309857040b63.tar.gz |
Add support for picture_ptr field in MJpegDecodeContext
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/mjpegdec.h')
-rw-r--r-- | libavcodec/mjpegdec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mjpegdec.h b/libavcodec/mjpegdec.h index 72fe6fa088..52c256ee2f 100644 --- a/libavcodec/mjpegdec.h +++ b/libavcodec/mjpegdec.h @@ -81,6 +81,7 @@ typedef struct MJpegDecodeContext { 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_ptr; /* pointer to picture structure */ int got_picture; ///< we found a SOF and picture is valid, too. int linesize[MAX_COMPONENTS]; ///< linesize << interlaced int8_t *qscale_table; |