qtmux: The prores variant is stored in the variant field, not format

And the caps in the sink pad template already used variant (only).
This commit is contained in:
Sebastian Dröge 2016-06-17 16:08:08 +03:00
parent 83ec89abdd
commit 5a7217a147

View file

@ -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"))