mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
riff: Add support for Lagarith fourcc tag
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6831>
This commit is contained in:
parent
ab54e45f67
commit
6198c7fba2
1 changed files with 6 additions and 0 deletions
|
@ -969,6 +969,12 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
|||
|
||||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('L', 'A', 'G', 'S'):
|
||||
caps = gst_caps_new_empty_simple ("video/x-lagarith");
|
||||
if (codec_name)
|
||||
*codec_name = g_strdup ("Lagarith lossless video codec");
|
||||
break;
|
||||
|
||||
default:
|
||||
GST_WARNING ("Unknown video fourcc %" GST_FOURCC_FORMAT,
|
||||
GST_FOURCC_ARGS (codec_fcc));
|
||||
|
|
Loading…
Reference in a new issue