diff options
author | Georg Lippitsch <glippitsch@toolsonair.com> | 2016-07-12 18:14:52 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-09-21 15:10:46 -0400 |
commit | 25526ed7f3a6d289573aa80a481f9c337ec648b3 (patch) | |
tree | 2e95173432dee5badbea53139c89517004965068 | |
parent | 2179b9b9d6d9f32ac58856d053e081fd4518d517 (diff) |
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
-rw-r--r-- | gst/isomp4/gstqtmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index 42d0a547e..c28eaf6d0 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) |