mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
qtdemux: add support for prores
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=683839
This commit is contained in:
parent
1d586d3bde
commit
4f015c594c
2 changed files with 5 additions and 0 deletions
|
@ -9539,6 +9539,10 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
_codec ("On2 VP8");
|
||||
caps = gst_caps_from_string ("video/x-vp8");
|
||||
break;
|
||||
case GST_MAKE_FOURCC ('a', 'p', 'c', 's'):
|
||||
_codec ("Apple ProRes");
|
||||
caps = gst_caps_from_string ("video/x-prores");
|
||||
break;
|
||||
case FOURCC_ovc1:
|
||||
_codec ("VC-1");
|
||||
caps = gst_caps_new_simple ("video/x-wmv",
|
||||
|
|
|
@ -173,6 +173,7 @@ G_BEGIN_DECLS
|
|||
#define FOURCC_tx3g GST_MAKE_FOURCC('t','x','3','g')
|
||||
#define FOURCC_mp4s GST_MAKE_FOURCC('m','p','4','s')
|
||||
#define FOURCC_gama GST_MAKE_FOURCC('g','a','m','a')
|
||||
#define FOURCC_apcs GST_MAKE_FOURCC('a','p','c','s')
|
||||
|
||||
/* SVQ3 fourcc */
|
||||
#define FOURCC_SEQH GST_MAKE_FOURCC('S','E','Q','H')
|
||||
|
|
Loading…
Reference in a new issue