mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
h263dec: Prevent dimension changes from leaking on errors in header parsing.
This fixes crashes with frame threads caused by inconsistent context parameters. Fixes Ticket1207 Found-by: John Villamil Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
601d072e68
commit
a02f8ef1d2
@ -438,6 +438,14 @@ retry:
|
||||
ret = ff_h263_decode_picture_header(s);
|
||||
}
|
||||
|
||||
if (HAVE_THREADS && (s->avctx->active_thread_type&FF_THREAD_FRAME) && 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");
|
||||
s->width = avctx->coded_width;
|
||||
s->height= avctx->coded_height;
|
||||
}
|
||||
}
|
||||
if(ret==FRAME_SKIPPED) return get_consumed_bytes(s, buf_size);
|
||||
|
||||
/* skip if the header was thrashed */
|
||||
|
Loading…
Reference in New Issue
Block a user