From e565f0d1ffb69006781a2d6de13d4443b2f8b125 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 26 Jun 2012 17:04:41 +0200 Subject: [PATCH] matroska: set interlace-mode --- gst/matroska/matroska-demux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 15ce407483..84cd829c38 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -5173,7 +5173,8 @@ gst_matroska_demux_video_caps (GstMatroskaTrackVideoContext * } if (videocontext->parent.flags & GST_MATROSKA_VIDEOTRACK_INTERLACED) - gst_structure_set (structure, "interlaced", G_TYPE_BOOLEAN, TRUE, NULL); + gst_structure_set (structure, "interlace-mode", G_TYPE_STRING, + "mixed", NULL); } caps = gst_caps_simplify (caps);