mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-10 00:12:48 +00:00
gst-libs/gst/riff/riff-media.c: add another H264 fourcc. Fixes #339047.
Original commit message from CVS: Patch by: Tim-Philipp Müller <tim at centricular dot net> * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps): add another H264 fourcc. Fixes #339047.
This commit is contained in:
parent
b00641404a
commit
d414feba1d
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
Patch by: Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
|
||||||
|
add another H264 fourcc. Fixes #339047.
|
||||||
|
|
||||||
2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
|
2006-04-22 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
Patch by: Jan Schmidt
|
Patch by: Jan Schmidt
|
||||||
|
|
|
@ -217,6 +217,7 @@ gst_riff_create_video_caps (guint32 codec_fcc,
|
||||||
*codec_name = g_strdup ("Intel H.263");
|
*codec_name = g_strdup ("Intel H.263");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GST_MAKE_FOURCC ('H', '2', '6', '4'):
|
||||||
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)
|
||||||
|
|
Loading…
Reference in a new issue