mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
mpegvideo_parser: Set field_order.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
507b1e454c
commit
f43c14d046
@ -114,6 +114,14 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
|
|||||||
s->repeat_pict = 2;
|
s->repeat_pict = 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!pc->progressive_sequence) {
|
||||||
|
if (top_field_first)
|
||||||
|
s->field_order = AV_FIELD_TT;
|
||||||
|
else
|
||||||
|
s->field_order = AV_FIELD_BB;
|
||||||
|
} else
|
||||||
|
s->field_order = AV_FIELD_PROGRESSIVE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user