From 25526ed7f3a6d289573aa80a481f9c337ec648b3 Mon Sep 17 00:00:00 2001 From: Georg Lippitsch Date: Tue, 12 Jul 2016 18:14:52 +0200 Subject: [PATCH] qtmux: Fix fourcc for ProRes Proxy This is apco, according to https://wiki.multimedia.cx/index.php?title=Apple_ProRes https://bugzilla.gnome.org/show_bug.cgi?id=769048 --- gst/isomp4/gstqtmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 42d0a547e1..c28eaf6d07 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -4214,7 +4214,7 @@ gst_qt_mux_video_sink_set_caps (GstQTPad * qtpad, GstCaps * caps) else if (!g_strcmp0 (variant, "hq")) entry.fourcc = FOURCC_apch; else if (!g_strcmp0 (variant, "proxy")) - entry.fourcc = FOURCC_ap4h; + entry.fourcc = FOURCC_apco; } if (!entry.fourcc)