Commit 8af7774c authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '3c8ea9d4'

* commit '3c8ea9d4':
  vmnc: use the AVFrame API properly.
  xan: use the AVFrame API properly.
  xxan: use the AVFrame API properly.
  zerocodec: use the AVFrame API properly.

Conflicts:
	libavcodec/vmnc.c
	libavcodec/xan.c
	libavcodec/xxan.c

See: cf5ab8b6
See: ad438f45
See: 67607e20Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents fe3808ed 3c8ea9d4
...@@ -57,7 +57,7 @@ enum HexTile_Flags { ...@@ -57,7 +57,7 @@ enum HexTile_Flags {
*/ */
typedef struct VmncContext { typedef struct VmncContext {
AVCodecContext *avctx; AVCodecContext *avctx;
AVFrame *frame; AVFrame *pic;
int bpp; int bpp;
int bpp2; int bpp2;
...@@ -320,15 +320,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -320,15 +320,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
GetByteContext *gb = &c->gb; GetByteContext *gb = &c->gb;
uint8_t *outptr; uint8_t *outptr;
int dx, dy, w, h, depth, enc, chunks, res, size_left, ret; int dx, dy, w, h, depth, enc, chunks, res, size_left, ret;
AVFrame *frame = c->frame;
if ((ret = ff_reget_buffer(avctx, frame)) < 0) if ((ret = ff_reget_buffer(avctx, c->pic)) < 0)
return ret; return ret;
bytestream2_init(gb, buf, buf_size); bytestream2_init(gb, buf, buf_size);
frame->key_frame = 0; c->pic->key_frame = 0;
frame->pict_type = AV_PICTURE_TYPE_P; c->pic->pict_type = AV_PICTURE_TYPE_P;
// restore screen after cursor // restore screen after cursor
if (c->screendta) { if (c->screendta) {
...@@ -350,11 +349,11 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -350,11 +349,11 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
dy = 0; dy = 0;
} }
if ((w > 0) && (h > 0)) { if ((w > 0) && (h > 0)) {
outptr = frame->data[0] + dx * c->bpp2 + dy * frame->linesize[0]; outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
for (i = 0; i < h; i++) { for (i = 0; i < h; i++) {
memcpy(outptr, c->screendta + i * c->cur_w * c->bpp2, memcpy(outptr, c->screendta + i * c->cur_w * c->bpp2,
w * c->bpp2); w * c->bpp2);
outptr += frame->linesize[0]; outptr += c->pic->linesize[0];
} }
} }
} }
...@@ -370,7 +369,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -370,7 +369,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
w = bytestream2_get_be16(gb); w = bytestream2_get_be16(gb);
h = bytestream2_get_be16(gb); h = bytestream2_get_be16(gb);
enc = bytestream2_get_be32(gb); enc = bytestream2_get_be32(gb);
outptr = frame->data[0] + dx * c->bpp2 + dy * frame->linesize[0]; outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
size_left = bytestream2_get_bytes_left(gb); size_left = bytestream2_get_bytes_left(gb);
switch (enc) { switch (enc) {
case MAGIC_WMVd: // cursor case MAGIC_WMVd: // cursor
...@@ -424,8 +423,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -424,8 +423,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
bytestream2_skip(gb, 4); bytestream2_skip(gb, 4);
break; break;
case MAGIC_WMVi: // ServerInitialization struct case MAGIC_WMVi: // ServerInitialization struct
frame->key_frame = 1; c->pic->key_frame = 1;
frame->pict_type = AV_PICTURE_TYPE_I; c->pic->pict_type = AV_PICTURE_TYPE_I;
depth = bytestream2_get_byte(gb); depth = bytestream2_get_byte(gb);
if (depth != c->bpp) { if (depth != c->bpp) {
av_log(avctx, AV_LOG_INFO, av_log(avctx, AV_LOG_INFO,
...@@ -460,7 +459,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -460,7 +459,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
paint_raw(outptr, w, h, gb, c->bpp2, c->bigendian, paint_raw(outptr, w, h, gb, c->bpp2, c->bigendian,
frame->linesize[0]); c->pic->linesize[0]);
break; break;
case 0x00000005: // HexTile encoded rectangle case 0x00000005: // HexTile encoded rectangle
if ((dx + w > c->width) || (dy + h > c->height)) { if ((dx + w > c->width) || (dy + h > c->height)) {
...@@ -469,7 +468,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -469,7 +468,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
w, h, dx, dy, c->width, c->height); w, h, dx, dy, c->width, c->height);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
res = decode_hextile(c, outptr, gb, w, h, frame->linesize[0]); res = decode_hextile(c, outptr, gb, w, h, c->pic->linesize[0]);
if (res < 0) if (res < 0)
return res; return res;
break; break;
...@@ -498,18 +497,18 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, ...@@ -498,18 +497,18 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
dy = 0; dy = 0;
} }
if ((w > 0) && (h > 0)) { if ((w > 0) && (h > 0)) {
outptr = frame->data[0] + dx * c->bpp2 + dy * frame->linesize[0]; outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
for (i = 0; i < h; i++) { for (i = 0; i < h; i++) {
memcpy(c->screendta + i * c->cur_w * c->bpp2, outptr, memcpy(c->screendta + i * c->cur_w * c->bpp2, outptr,
w * c->bpp2); w * c->bpp2);
outptr += frame->linesize[0]; outptr += c->pic->linesize[0];
} }
outptr = frame->data[0]; outptr = c->pic->data[0];
put_cursor(outptr, frame->linesize[0], c, c->cur_x, c->cur_y); put_cursor(outptr, c->pic->linesize[0], c, c->cur_x, c->cur_y);
} }
} }
*got_frame = 1; *got_frame = 1;
if ((ret = av_frame_ref(data, frame)) < 0) if ((ret = av_frame_ref(data, c->pic)) < 0)
return ret; return ret;
/* always report that the buffer was completely consumed */ /* always report that the buffer was completely consumed */
...@@ -541,8 +540,8 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -541,8 +540,8 @@ static av_cold int decode_init(AVCodecContext *avctx)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
c->frame = av_frame_alloc(); c->pic = av_frame_alloc();
if (!c->frame) if (!c->pic)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
return 0; return 0;
...@@ -552,7 +551,7 @@ static av_cold int decode_end(AVCodecContext *avctx) ...@@ -552,7 +551,7 @@ static av_cold int decode_end(AVCodecContext *avctx)
{ {
VmncContext * const c = avctx->priv_data; VmncContext * const c = avctx->priv_data;
av_frame_free(&c->frame); av_frame_free(&c->pic);
av_freep(&c->curbits); av_freep(&c->curbits);
av_freep(&c->curmask); av_freep(&c->curmask);
......
...@@ -71,7 +71,18 @@ typedef struct XanContext { ...@@ -71,7 +71,18 @@ typedef struct XanContext {
} XanContext; } XanContext;
static av_cold int xan_decode_end(AVCodecContext *avctx); static av_cold int xan_decode_end(AVCodecContext *avctx)
{
XanContext *s = avctx->priv_data;
av_frame_free(&s->last_frame);
av_freep(&s->buffer1);
av_freep(&s->buffer2);
av_freep(&s->palettes);
return 0;
}
static av_cold int xan_decode_init(AVCodecContext *avctx) static av_cold int xan_decode_init(AVCodecContext *avctx)
{ {
...@@ -92,6 +103,7 @@ static av_cold int xan_decode_init(AVCodecContext *avctx) ...@@ -92,6 +103,7 @@ static av_cold int xan_decode_init(AVCodecContext *avctx)
av_freep(&s->buffer1); av_freep(&s->buffer1);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
s->last_frame = av_frame_alloc(); s->last_frame = av_frame_alloc();
if (!s->last_frame) { if (!s->last_frame) {
xan_decode_end(avctx); xan_decode_end(avctx);
...@@ -623,19 +635,6 @@ static int xan_decode_frame(AVCodecContext *avctx, ...@@ -623,19 +635,6 @@ static int xan_decode_frame(AVCodecContext *avctx,
return buf_size; return buf_size;
} }
static av_cold int xan_decode_end(AVCodecContext *avctx)
{
XanContext *s = avctx->priv_data;
av_frame_free(&s->last_frame);
av_freep(&s->buffer1);
av_freep(&s->buffer2);
av_freep(&s->palettes);
return 0;
}
AVCodec ff_xan_wc3_decoder = { AVCodec ff_xan_wc3_decoder = {
.name = "xan_wc3", .name = "xan_wc3",
.long_name = NULL_IF_CONFIG_SMALL("Wing Commander III / Xan"), .long_name = NULL_IF_CONFIG_SMALL("Wing Commander III / Xan"),
......
...@@ -38,7 +38,17 @@ typedef struct XanContext { ...@@ -38,7 +38,17 @@ typedef struct XanContext {
GetByteContext gb; GetByteContext gb;
} XanContext; } XanContext;
static av_cold int xan_decode_end(AVCodecContext *avctx); static av_cold int xan_decode_end(AVCodecContext *avctx)
{
XanContext *s = avctx->priv_data;
av_frame_free(&s->pic);
av_freep(&s->y_buffer);
av_freep(&s->scratch_buffer);
return 0;
}
static av_cold int xan_decode_init(AVCodecContext *avctx) static av_cold int xan_decode_init(AVCodecContext *avctx)
{ {
...@@ -428,18 +438,6 @@ static int xan_decode_frame(AVCodecContext *avctx, ...@@ -428,18 +438,6 @@ static int xan_decode_frame(AVCodecContext *avctx,
return avpkt->size; return avpkt->size;
} }
static av_cold int xan_decode_end(AVCodecContext *avctx)
{
XanContext *s = avctx->priv_data;
av_frame_free(&s->pic);
av_freep(&s->y_buffer);
av_freep(&s->scratch_buffer);
return 0;
}
AVCodec ff_xan_wc4_decoder = { AVCodec ff_xan_wc4_decoder = {
.name = "xan_wc4", .name = "xan_wc4",
.long_name = NULL_IF_CONFIG_SMALL("Wing Commander IV / Xxan"), .long_name = NULL_IF_CONFIG_SMALL("Wing Commander IV / Xxan"),
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "libavutil/common.h" #include "libavutil/common.h"
typedef struct { typedef struct {
AVFrame previous_frame; AVFrame *previous_frame;
z_stream zstream; z_stream zstream;
} ZeroCodecContext; } ZeroCodecContext;
...@@ -32,7 +32,7 @@ static int zerocodec_decode_frame(AVCodecContext *avctx, void *data, ...@@ -32,7 +32,7 @@ static int zerocodec_decode_frame(AVCodecContext *avctx, void *data,
{ {
ZeroCodecContext *zc = avctx->priv_data; ZeroCodecContext *zc = avctx->priv_data;
AVFrame *pic = data; AVFrame *pic = data;
AVFrame *prev_pic = &zc->previous_frame; AVFrame *prev_pic = zc->previous_frame;
z_stream *zstream = &zc->zstream; z_stream *zstream = &zc->zstream;
uint8_t *prev = prev_pic->data[0]; uint8_t *prev = prev_pic->data[0];
uint8_t *dst; uint8_t *dst;
...@@ -91,8 +91,8 @@ static int zerocodec_decode_frame(AVCodecContext *avctx, void *data, ...@@ -91,8 +91,8 @@ static int zerocodec_decode_frame(AVCodecContext *avctx, void *data,
dst -= pic->linesize[0]; dst -= pic->linesize[0];
} }
av_frame_unref(&zc->previous_frame); av_frame_unref(zc->previous_frame);
if ((ret = av_frame_ref(&zc->previous_frame, pic)) < 0) if ((ret = av_frame_ref(zc->previous_frame, pic)) < 0)
return ret; return ret;
*got_frame = 1; *got_frame = 1;
...@@ -104,7 +104,7 @@ static av_cold int zerocodec_decode_close(AVCodecContext *avctx) ...@@ -104,7 +104,7 @@ static av_cold int zerocodec_decode_close(AVCodecContext *avctx)
{ {
ZeroCodecContext *zc = avctx->priv_data; ZeroCodecContext *zc = avctx->priv_data;
av_frame_unref(&zc->previous_frame); av_frame_free(&zc->previous_frame);
inflateEnd(&zc->zstream); inflateEnd(&zc->zstream);
...@@ -130,6 +130,12 @@ static av_cold int zerocodec_decode_init(AVCodecContext *avctx) ...@@ -130,6 +130,12 @@ static av_cold int zerocodec_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
zc->previous_frame = av_frame_alloc();
if (!zc->previous_frame) {
zerocodec_decode_close(avctx);
return AVERROR(ENOMEM);
}
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment