From: Sebastian Dröge Date: Fri, 17 Jun 2016 13:08:08 +0000 (+0300) Subject: qtmux: The prores variant is stored in the variant field, not format X-Git-Tag: 1.19.3~509^2~2694 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a7217a147daa2dc150f120b32889d78d5ff4883;p=platform%2Fupstream%2Fgstreamer.git qtmux: The prores variant is stored in the variant field, not format And the caps in the sink pad template already used variant (only). --- diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 5be830b..d9e843b 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -4084,7 +4084,7 @@ gst_qt_mux_video_sink_set_caps (GstQTPad * qtpad, GstCaps * caps) } else if (strcmp (mimetype, "video/x-prores") == 0) { const gchar *variant; - variant = gst_structure_get_string (structure, "format"); + variant = gst_structure_get_string (structure, "variant"); if (!variant || !g_strcmp0 (variant, "standard")) entry.fourcc = FOURCC_apcn; else if (!g_strcmp0 (variant, "lt"))