matroskademux: Set interlaced flag in the caps if the flag is set in the Matroska file

This commit is contained in:
Sebastian Dröge 2010-05-01 14:15:49 +02:00
parent db6a3e55c6
commit 1e1cf5df70

View file

@ -6485,6 +6485,9 @@ gst_matroska_demux_video_caps (GstMatroskaTrackVideoContext *
gst_structure_set (structure, "framerate", GST_TYPE_FRACTION,
25, 1, NULL);
}
if (videocontext->parent.flags & GST_MATROSKA_VIDEOTRACK_INTERLACED)
gst_structure_set (structure, "interlaced", G_TYPE_BOOLEAN, TRUE, NULL);
}
gst_caps_do_simplify (caps);