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:
Tim-Philipp Müller 2006-05-09 11:37:22 +00:00
parent 8207acfae9
commit 308f541bf4
2 changed files with 12 additions and 0 deletions

View file

@ -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:

View file

@ -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'):