mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst-libs/gst/riff/riff-media.c: Add SEDG (Samsung MPEG-4) fourcc.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps): Add SEDG (Samsung MPEG-4) fourcc.
This commit is contained in:
parent
8207acfae9
commit
308f541bf4
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
|
||||
Add SEDG (Samsung MPEG-4) fourcc.
|
||||
|
||||
2006-05-09 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
* tests/examples/volume/volume.c:
|
||||
|
|
|
@ -230,6 +230,13 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
|||
*codec_name = g_strdup ("VideoSoft H.264");
|
||||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('S', 'E', 'D', 'G'):
|
||||
caps = gst_caps_new_simple ("video/mpeg",
|
||||
"mpegversion", G_TYPE_INT, 4, NULL);
|
||||
if (codec_name)
|
||||
*codec_name = g_strdup ("Samsung MPEG-4");
|
||||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '3'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', '3'):
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '4'):
|
||||
|
|
Loading…
Reference in a new issue