mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
gst-libs/gst/riff/riff-media.c: Add intel-h263.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data), (gst_riff_create_video_template_caps): Add intel-h263.
This commit is contained in:
parent
8e7b5f16a3
commit
1e37668bb5
2 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* gst-libs/gst/riff/riff-media.c:
|
||||||
|
(gst_riff_create_video_caps_with_data),
|
||||||
|
(gst_riff_create_video_template_caps):
|
||||||
|
Add intel-h263.
|
||||||
|
|
||||||
2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2005-01-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
|
* ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
|
||||||
|
|
|
@ -160,6 +160,13 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
||||||
*codec_name = g_strdup ("Xirlink H.263");
|
*codec_name = g_strdup ("Xirlink H.263");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/* apparently not standard H.263...? */
|
||||||
|
case GST_MAKE_FOURCC ('I', '2', '6', '3'):
|
||||||
|
caps = gst_caps_new_simple ("video/x-intel-h263", NULL);
|
||||||
|
if (codec_name)
|
||||||
|
*codec_name = g_strdup ("Intel H.263");
|
||||||
|
break;
|
||||||
|
|
||||||
case GST_MAKE_FOURCC ('h', '2', '6', '4'):
|
case GST_MAKE_FOURCC ('h', '2', '6', '4'):
|
||||||
caps = gst_caps_new_simple ("video/x-h264", NULL);
|
caps = gst_caps_new_simple ("video/x-h264", NULL);
|
||||||
if (codec_name)
|
if (codec_name)
|
||||||
|
@ -602,6 +609,7 @@ gst_riff_create_video_template_caps (void)
|
||||||
GST_MAKE_FOURCC ('D', 'I', 'V', '3'),
|
GST_MAKE_FOURCC ('D', 'I', 'V', '3'),
|
||||||
GST_MAKE_FOURCC ('M', 'P', 'E', 'G'),
|
GST_MAKE_FOURCC ('M', 'P', 'E', 'G'),
|
||||||
GST_MAKE_FOURCC ('H', '2', '6', '3'),
|
GST_MAKE_FOURCC ('H', '2', '6', '3'),
|
||||||
|
GST_MAKE_FOURCC ('I', '2', '6', '3'),
|
||||||
GST_MAKE_FOURCC ('h', '2', '6', '4'),
|
GST_MAKE_FOURCC ('h', '2', '6', '4'),
|
||||||
GST_MAKE_FOURCC ('D', 'I', 'V', 'X'),
|
GST_MAKE_FOURCC ('D', 'I', 'V', 'X'),
|
||||||
GST_MAKE_FOURCC ('D', 'X', '5', '0'),
|
GST_MAKE_FOURCC ('D', 'X', '5', '0'),
|
||||||
|
|
Loading…
Reference in a new issue