gst/mxf/mxfparse.c: All frame layout values except 0 are for interlaced video, not only 1 and 2.

Original commit message from CVS:
* gst/mxf/mxfparse.c:
(mxf_metadata_generic_picture_essence_descriptor_set_caps):
All frame layout values except 0 are for interlaced video,
not only 1 and 2.
This commit is contained in:
Sebastian Dröge 2008-12-08 15:46:13 +00:00
parent 204cd06fbe
commit d23484c483
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2008-12-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/mxf/mxfparse.c:
(mxf_metadata_generic_picture_essence_descriptor_set_caps):
All frame layout values except 0 are for interlaced video,
not only 1 and 2.
2008-12-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/mxf/mxfdemux.c: (gst_mxf_demux_reset_metadata),

View file

@ -2629,7 +2629,7 @@ void mxf_metadata_generic_picture_essence_descriptor_set_caps
*
* See SMPTE 377M E2.2 and E1.2
*/
if (descriptor->frame_layout == 1 || descriptor->frame_layout == 2)
if (descriptor->frame_layout != 0)
height *= 2;
if (width == 0 || height == 0)