Browse Source

h263dec: Restore w/h values to a consistent state if a change is rejected.

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
4a619fcae9
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/h263dec.c

+ 2
- 0
libavcodec/h263dec.c View File

@@ -587,6 +587,8 @@ retry:

if (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_FRAME)) {
av_log_missing_feature(s->avctx, "Width/height/bit depth/chroma idc changing with threads is", 0);
s->width = avctx->coded_width;
s->height= avctx->coded_height;
return -1; // width / height changed during parallelized decoding
}



Loading…
Cancel
Save