Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-06 16:57:29 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-01-06 17:23:01 +0400
commit80d44190c4d909e9685d04bcde693da3e2441dfd (patch)
tree38024d00022c9e8dd2c15c1b82765b8392c2c42d /libavcodec/kgv1dec.c
parentd1134ababdbd55ef0330c09deccfb32daaa809b5 (diff)
parentadb199d1bc7f86aa6b85986f40190ec17f99d34f (diff)
Merge commit 'adb199d1bc7f86aa6b85986f40190ec17f99d34f'
* commit 'adb199d1bc7f86aa6b85986f40190ec17f99d34f': kgv1dec: replace forcing EMU_EDGE by a copy Conflicts: libavcodec/kgv1dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/kgv1dec.c')
-rw-r--r--libavcodec/kgv1dec.c41
1 files changed, 22 insertions, 19 deletions
diff --git a/libavcodec/kgv1dec.c b/libavcodec/kgv1dec.c
index 5528c6f361..ea1ca9afd3 100644
--- a/libavcodec/kgv1dec.c
+++ b/libavcodec/kgv1dec.c
@@ -31,14 +31,16 @@
#include "internal.h"
typedef struct {
- AVFrame *prev;
+ uint16_t *frame_buffer;
+ uint16_t *last_frame_buffer;
} KgvContext;
static void decode_flush(AVCodecContext *avctx)
{
KgvContext * const c = avctx->priv_data;
- av_frame_free(&c->prev);
+ av_freep(&c->frame_buffer);
+ av_freep(&c->last_frame_buffer);
}
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
@@ -61,21 +63,27 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
buf += 2;
if (w != avctx->width || h != avctx->height) {
- av_frame_unref(c->prev);
+ av_freep(&c->frame_buffer);
+ av_freep(&c->last_frame_buffer);
if ((res = ff_set_dimensions(avctx, w, h)) < 0)
return res;
}
+ if (!c->frame_buffer) {
+ c->frame_buffer = av_mallocz(avctx->width * avctx->height * 2);
+ c->last_frame_buffer = av_mallocz(avctx->width * avctx->height * 2);
+ if (!c->frame_buffer || !c->last_frame_buffer) {
+ decode_flush(avctx);
+ return AVERROR(ENOMEM);
+ }
+ }
+
maxcnt = w * h;
- if ((res = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
+ if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
return res;
- out = frame->data[0];
- if (c->prev->data[0]) {
- prev = c->prev->data[0];
- } else {
- prev = NULL;
- }
+ out = c->frame_buffer;
+ prev = c->last_frame_buffer;
for (i = 0; i < 8; i++)
offsets[i] = -1;
@@ -142,9 +150,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
if (outcnt - maxcnt)
av_log(avctx, AV_LOG_DEBUG, "frame finished with %d diff\n", outcnt - maxcnt);
- av_frame_unref(c->prev);
- if ((res = av_frame_ref(c->prev, frame)) < 0)
- return res;
+ av_image_copy_plane(frame->data[0], frame->linesize[0],
+ (const uint8_t*)c->frame_buffer, avctx->width * 2,
+ avctx->width * 2, avctx->height);
+ FFSWAP(uint16_t *, c->frame_buffer, c->last_frame_buffer);
*got_frame = 1;
@@ -155,12 +164,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
{
KgvContext * const c = avctx->priv_data;
- c->prev = av_frame_alloc();
- if (!c->prev)
- return AVERROR(ENOMEM);
-
avctx->pix_fmt = AV_PIX_FMT_RGB555;
- avctx->flags |= CODEC_FLAG_EMU_EDGE;
return 0;
}
@@ -168,7 +172,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
static av_cold int decode_end(AVCodecContext *avctx)
{
KgvContext * const c = avctx->priv_data;
- av_frame_free(&c->prev);
return 0;
}