[FFmpeg-cvslog] h263dec: always enable picture dimensions reverting check.
Michael Niedermayer
git at videolan.org
Thu Apr 19 11:21:42 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Apr 19 10:43:46 2012 +0200| [df23d64e0781a6b7389a1dd2627c65f7cb131278] | committer: Michael Niedermayer
h263dec: always enable picture dimensions reverting check.
This does not need to be limited to threads and may help with error
resilience on single thread
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=df23d64e0781a6b7389a1dd2627c65f7cb131278
---
libavcodec/h263dec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 50699c7..ac0303d 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -438,7 +438,7 @@ retry:
ret = ff_h263_decode_picture_header(s);
}
- if (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_FRAME) && ret < 0) {
+ if (ret < 0) {
if ( s->width != avctx->coded_width
|| s->height != avctx->coded_height) {
av_log(s->avctx, AV_LOG_WARNING, "Reverting picture dimensions change due to header decoding failure\n");
More information about the ffmpeg-cvslog
mailing list