diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-17 00:21:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-17 00:21:16 +0100 |
commit | 21c41e76d7c1ddaadafc9da50e99db51358f3754 (patch) | |
tree | 09e9916cc011e93f07a6044ca6c8b05d116e02fc /libavcodec/c93.c | |
parent | cc4a6435638fa2a471fef048a3e68eaf7e6e306c (diff) | |
parent | cec5ce49229d61e4eb1f331a6d0dff3aa24f6655 (diff) | |
download | ffmpeg-21c41e76d7c1ddaadafc9da50e99db51358f3754.tar.gz |
Merge commit 'cec5ce49229d61e4eb1f331a6d0dff3aa24f6655'
* commit 'cec5ce49229d61e4eb1f331a6d0dff3aa24f6655':
cdxl: remove an unused variable
c93: use the AVFrame API properly.
bethsoftvid: use the AVFrame API properly.
avs: use the AVFrame API properly.
Conflicts:
libavcodec/bethsoftvideo.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/c93.c')
-rw-r--r-- | libavcodec/c93.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/libavcodec/c93.c b/libavcodec/c93.c index 9ac804ef72..ad3fa3b7b8 100644 --- a/libavcodec/c93.c +++ b/libavcodec/c93.c @@ -24,7 +24,7 @@ #include "internal.h" typedef struct { - AVFrame pictures[2]; + AVFrame *pictures[2]; int currentpic; } C93DecoderContext; @@ -46,21 +46,27 @@ typedef enum { #define C93_HAS_PALETTE 0x01 #define C93_FIRST_FRAME 0x02 -static av_cold int decode_init(AVCodecContext *avctx) +static av_cold int decode_end(AVCodecContext *avctx) { - C93DecoderContext *s = avctx->priv_data; - avctx->pix_fmt = AV_PIX_FMT_PAL8; - avcodec_get_frame_defaults(&s->pictures[0]); - avcodec_get_frame_defaults(&s->pictures[1]); + C93DecoderContext * const c93 = avctx->priv_data; + + av_frame_free(&c93->pictures[0]); + av_frame_free(&c93->pictures[1]); + return 0; } -static av_cold int decode_end(AVCodecContext *avctx) +static av_cold int decode_init(AVCodecContext *avctx) { - C93DecoderContext * const c93 = avctx->priv_data; + C93DecoderContext *s = avctx->priv_data; + avctx->pix_fmt = AV_PIX_FMT_PAL8; - av_frame_unref(&c93->pictures[0]); - av_frame_unref(&c93->pictures[1]); + s->pictures[0] = av_frame_alloc(); + s->pictures[1] = av_frame_alloc(); + if (!s->pictures[0] || !s->pictures[1]) { + decode_end(avctx); + return AVERROR(ENOMEM); + } return 0; } @@ -121,8 +127,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; C93DecoderContext * const c93 = avctx->priv_data; - AVFrame * const newpic = &c93->pictures[c93->currentpic]; - AVFrame * const oldpic = &c93->pictures[c93->currentpic^1]; + AVFrame * const newpic = c93->pictures[c93->currentpic]; + AVFrame * const oldpic = c93->pictures[c93->currentpic^1]; GetByteContext gb; uint8_t *out; int stride, ret, i, x, y, b, bt = 0; |