mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
h263dec: disable coded dimensions = 0 handling
This code causes infinite loops Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
61ced71d79
commit
d2981b8ef1
@ -598,7 +598,7 @@ retry:
|
||||
/* FIXME: By the way H263 decoder is evolving it should have */
|
||||
/* an H263EncContext */
|
||||
|
||||
if (!avctx->coded_width || !avctx->coded_height) {
|
||||
if ((!avctx->coded_width || !avctx->coded_height) && 0) {
|
||||
ParseContext pc= s->parse_context; //FIXME move these demuxng hack to avformat
|
||||
|
||||
s->parse_context.buffer=0;
|
||||
|
Loading…
Reference in New Issue
Block a user