mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
riff: Add support for TechSmith Screen Capture 2
https://bugzilla.gnome.org/show_bug.cgi?id=707878
This commit is contained in:
parent
1618084bc8
commit
2976866348
1 changed files with 11 additions and 0 deletions
|
@ -721,6 +721,7 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
|||
*codec_name = g_strdup ("IBM UltiMotion");
|
||||
break;
|
||||
|
||||
/* FIXME 2.0: Rename video/x-camtasia to video/x-tscc,version=1 */
|
||||
case GST_MAKE_FOURCC ('T', 'S', 'C', 'C'):
|
||||
case GST_MAKE_FOURCC ('t', 's', 'c', 'c'):{
|
||||
if (strf) {
|
||||
|
@ -737,6 +738,16 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
|||
break;
|
||||
}
|
||||
|
||||
case GST_MAKE_FOURCC ('T', 'S', 'C', '2'):
|
||||
case GST_MAKE_FOURCC ('t', 's', 'c', '2'):{
|
||||
caps =
|
||||
gst_caps_new_simple ("video/x-tscc", "tsccversion", G_TYPE_INT, 2,
|
||||
NULL);
|
||||
if (codec_name)
|
||||
*codec_name = g_strdup ("TechSmith Screen Capture 2");
|
||||
break;
|
||||
}
|
||||
|
||||
case GST_MAKE_FOURCC ('C', 'S', 'C', 'D'):
|
||||
{
|
||||
if (strf) {
|
||||
|
|
Loading…
Reference in a new issue