summaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-17 11:12:47 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-17 11:48:22 +0200
commit9640ea1da4e0893001031c6d88aa48f350cc9956 (patch)
treee208c5446cbd971646ae3964263ac8dbf97ed080 /libavcodec
parent186e47ef6d7d90bfd8b16e77cfa5e7aeb2a497c0 (diff)
downloadffmpeg-streaming-9640ea1da4e0893001031c6d88aa48f350cc9956.zip
ffmpeg-streaming-9640ea1da4e0893001031c6d88aa48f350cc9956.tar.gz
dxa: fix support of decoding all frames even in the absence of references
The case where decoding should only happen for keyframes and afterwards (CODEC_FLAG2_SHOW_ALL not set) does not fully work neither before nor after this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/dxa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dxa.c b/libavcodec/dxa.c
index 0ef208b..8f8e1a7 100644
--- a/libavcodec/dxa.c
+++ b/libavcodec/dxa.c
@@ -264,7 +264,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
case 5:
if (!tmpptr && (compr & 1)) {
av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n");
- return AVERROR_INVALIDDATA;
+ if (!(avctx->flags2 & CODEC_FLAG2_SHOW_ALL))
+ return AVERROR_INVALIDDATA;
}
frame->key_frame = !(compr & 1);
frame->pict_type = (compr & 1) ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;
OpenPOWER on IntegriCloud