mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
avcodec/h263dec: move call to ff_mpeg4_workaround_bugs() under codec_id check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2b1922d964
commit
b239f3f69d
@ -491,8 +491,10 @@ retry:
|
|||||||
|
|
||||||
avctx->has_b_frames = !s->low_delay;
|
avctx->has_b_frames = !s->low_delay;
|
||||||
|
|
||||||
|
if (CONFIG_MPEG4_DECODER && avctx->codec_id == AV_CODEC_ID_MPEG4) {
|
||||||
if (ff_mpeg4_workaround_bugs(avctx) == 1)
|
if (ff_mpeg4_workaround_bugs(avctx) == 1)
|
||||||
goto retry;
|
goto retry;
|
||||||
|
}
|
||||||
|
|
||||||
/* After H263 & mpeg4 header decode we have the height, width,
|
/* After H263 & mpeg4 header decode we have the height, width,
|
||||||
* and other parameters. So then we could init the picture.
|
* and other parameters. So then we could init the picture.
|
||||||
|
Loading…
Reference in New Issue
Block a user