diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-19 14:15:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-19 14:15:47 +0200 |
commit | c5fd9d3c35cb743226770e1077e6b082f44bd889 (patch) | |
tree | e27eecd0a854a9e8a2374410b343f756835a468e /libavcodec/bmv.c | |
parent | 81ff0c24ef050c1877639ecc3ba6c485fde0a74e (diff) | |
parent | 61cc99748c1107a2f07491ce768156cc74b95e29 (diff) | |
download | ffmpeg-c5fd9d3c35cb743226770e1077e6b082f44bd889.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
fate: Add proper dependencies in qt.mak
fate: Add proper dependencies in lossless-video.mak
indeo3: do not try to output more lines than we can fit
bmv: get a new frame on every decode_frame(), so we can use direct rendering
Conflicts:
libavcodec/bmv.c
tests/fate/lossless-video.mak
tests/fate/qt.mak
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/bmv.c')
-rw-r--r-- | libavcodec/bmv.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libavcodec/bmv.c b/libavcodec/bmv.c index 665af929bb..c9066dfa5c 100644 --- a/libavcodec/bmv.c +++ b/libavcodec/bmv.c @@ -198,7 +198,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac { BMVDecContext * const c = avctx->priv_data; int type, scr_off; - int i; + int i, ret; uint8_t *srcptr, *outptr; c->stream = pkt->data; @@ -239,6 +239,15 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac scr_off = 0; } + if (c->pic.data[0]) + avctx->release_buffer(avctx, &c->pic); + + c->pic.reference = 3; + if ((ret = avctx->get_buffer(avctx, &c->pic)) < 0) { + av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); + return ret; + } + if (decode_bmv_frame(c->stream, pkt->size - (c->stream - pkt->data), c->frame, scr_off)) { av_log(avctx, AV_LOG_ERROR, "Error decoding frame data\n"); return AVERROR_INVALIDDATA; @@ -275,12 +284,6 @@ static av_cold int decode_init(AVCodecContext *avctx) return AVERROR_INVALIDDATA; } - c->pic.reference = 1; - if (avctx->get_buffer(avctx, &c->pic) < 0) { - av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); - return -1; - } - c->frame = c->frame_base + 640; return 0; |