Commit d84bd465 authored by Reimar Döffinger's avatar Reimar Döffinger Committed by Luca Barbato

mxf: Set AV_FIELD_PROGRESSIVE

Needed for AVC-intra
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent d8e763fd
...@@ -1484,6 +1484,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) ...@@ -1484,6 +1484,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
"SegmentedFrame layout isn't currently supported\n"); "SegmentedFrame layout isn't currently supported\n");
break; break;
case FullFrame: case FullFrame:
st->codec->field_order = AV_FIELD_PROGRESSIVE;
break; break;
case OneField: case OneField:
/* Every other line is stored and needs to be duplicated. */ /* Every other line is stored and needs to be duplicated. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment