[FFmpeg-cvslog] avcodec/h263dec: fix handling of AV_EF_EXPLODE
Michael Niedermayer
git at videolan.org
Mon Oct 28 18:04:32 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Oct 28 17:05:59 2013 +0100| [c00686518c0b80905f785b0e29a75b6fb806553e] | committer: Michael Niedermayer
avcodec/h263dec: fix handling of AV_EF_EXPLODE
This fixes checking a variable that had been overwritten before.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c00686518c0b80905f785b0e29a75b6fb806553e
---
libavcodec/h263dec.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index a5955b7..40d2237 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -375,6 +375,7 @@ int ff_h263_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
int buf_size = avpkt->size;
MpegEncContext *s = avctx->priv_data;
int ret;
+ int slice_ret = 0;
AVFrame *pict = data;
s->flags = avctx->flags;
@@ -705,7 +706,7 @@ retry:
s->mb_x = 0;
s->mb_y = 0;
- ret = decode_slice(s);
+ slice_ret = decode_slice(s);
while (s->mb_y < s->mb_height) {
if (s->msmpeg4_version) {
if (s->slice_height == 0 || s->mb_x != 0 ||
@@ -723,7 +724,7 @@ retry:
ff_mpeg4_clean_buffers(s);
if (decode_slice(s) < 0)
- ret = AVERROR_INVALIDDATA;
+ slice_ret = AVERROR_INVALIDDATA;
}
if (s->msmpeg4_version && s->msmpeg4_version < 4 &&
@@ -812,7 +813,7 @@ frame_end:
*got_frame = 1;
}
- if (ret && (avctx->err_recognition & AV_EF_EXPLODE))
+ if (slice_ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
return ret;
else
return get_consumed_bytes(s, buf_size);
More information about the ffmpeg-cvslog
mailing list