mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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:
parent
83ec89abdd
commit
5a7217a147
1 changed files with 1 additions and 1 deletions
|
@ -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"))
|
||||
|
|
Loading…
Reference in a new issue