mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
mjpegdec: use the AVFrame API properly.
This commit is contained in:
parent
f0b234ab9e
commit
e2274aa555
@ -84,8 +84,12 @@ av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
|
|||||||
{
|
{
|
||||||
MJpegDecodeContext *s = avctx->priv_data;
|
MJpegDecodeContext *s = avctx->priv_data;
|
||||||
|
|
||||||
if (!s->picture_ptr)
|
if (!s->picture_ptr) {
|
||||||
s->picture_ptr = &s->picture;
|
s->picture = av_frame_alloc();
|
||||||
|
if (!s->picture)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
s->picture_ptr = s->picture;
|
||||||
|
}
|
||||||
|
|
||||||
s->avctx = avctx;
|
s->avctx = avctx;
|
||||||
ff_hpeldsp_init(&s->hdsp, avctx->flags);
|
ff_hpeldsp_init(&s->hdsp, avctx->flags);
|
||||||
@ -1651,7 +1655,10 @@ av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
|
|||||||
MJpegDecodeContext *s = avctx->priv_data;
|
MJpegDecodeContext *s = avctx->priv_data;
|
||||||
int i, j;
|
int i, j;
|
||||||
|
|
||||||
if (s->picture_ptr)
|
if (s->picture) {
|
||||||
|
av_frame_free(&s->picture);
|
||||||
|
s->picture_ptr = NULL;
|
||||||
|
} else if (s->picture_ptr)
|
||||||
av_frame_unref(s->picture_ptr);
|
av_frame_unref(s->picture_ptr);
|
||||||
|
|
||||||
av_free(s->buffer);
|
av_free(s->buffer);
|
||||||
|
@ -84,7 +84,7 @@ typedef struct MJpegDecodeContext {
|
|||||||
int h_max, v_max; /* maximum h and v counts */
|
int h_max, v_max; /* maximum h and v counts */
|
||||||
int quant_index[4]; /* quant table index for each component */
|
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 ?) */
|
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 */
|
AVFrame *picture_ptr; /* pointer to picture structure */
|
||||||
int got_picture; ///< we found a SOF and picture is valid, too.
|
int got_picture; ///< we found a SOF and picture is valid, too.
|
||||||
int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
|
int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
|
||||||
|
Loading…
Reference in New Issue
Block a user