mirror of https://git.ffmpeg.org/ffmpeg.git
Remove apparently unneeded out!=NULL check.
Originally committed as revision 14299 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3eaa6d0e56
commit
801b27fa7c
|
@ -7856,7 +7856,7 @@ static int decode_frame(AVCodecContext *avctx,
|
||||||
{ }
|
{ }
|
||||||
else if((out_of_order && pics-1 == s->avctx->has_b_frames && pics < 15)
|
else if((out_of_order && pics-1 == s->avctx->has_b_frames && pics < 15)
|
||||||
|| (s->low_delay &&
|
|| (s->low_delay &&
|
||||||
((!cross_idr && out && out->poc > h->outputed_poc + 2)
|
((!cross_idr && out->poc > h->outputed_poc + 2)
|
||||||
|| cur->pict_type == FF_B_TYPE)))
|
|| cur->pict_type == FF_B_TYPE)))
|
||||||
{
|
{
|
||||||
s->low_delay = 0;
|
s->low_delay = 0;
|
||||||
|
|
Loading…
Reference in New Issue