mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
mxf: Fix frame_layout for non-interlaced formats. Fixes #583337
This commit is contained in:
parent
347c35e482
commit
0520a2a53b
1 changed files with 1 additions and 1 deletions
|
@ -4984,7 +4984,7 @@ gboolean
|
|||
s = gst_caps_get_structure (caps, 0);
|
||||
|
||||
if (!gst_structure_get_boolean (s, "interlaced", &interlaced) || !interlaced)
|
||||
self->frame_layout = 1;
|
||||
self->frame_layout = 0;
|
||||
else
|
||||
self->frame_layout = 3;
|
||||
|
||||
|
|
Loading…
Reference in a new issue