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@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-04-19 10:43:46 +02:00
parent 74e4bb6912
commit df23d64e07

View File

@ -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");