mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
Fix sei_ct_type check so it does not mistreat ct_type= unknown.
Originally committed as revision 19082 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4d95ae1882
commit
f4ebb334be
@ -7793,7 +7793,7 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
|
|
||||||
/* Signal interlacing information externally. */
|
/* Signal interlacing information externally. */
|
||||||
/* Prioritize picture timing SEI information over used decoding process if it exists. */
|
/* Prioritize picture timing SEI information over used decoding process if it exists. */
|
||||||
if (h->sei_ct_type)
|
if (h->sei_ct_type & 3)
|
||||||
cur->interlaced_frame = (h->sei_ct_type & (1<<1)) != 0;
|
cur->interlaced_frame = (h->sei_ct_type & (1<<1)) != 0;
|
||||||
else
|
else
|
||||||
cur->interlaced_frame = FIELD_OR_MBAFF_PICTURE;
|
cur->interlaced_frame = FIELD_OR_MBAFF_PICTURE;
|
||||||
|
Loading…
Reference in New Issue
Block a user