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:
Tim-Philipp Müller 2006-04-22 21:19:06 +00:00 committed by Thomas Vander Stichele
parent b00641404a
commit d414feba1d
2 changed files with 8 additions and 0 deletions

View file

@ -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>
Patch by: Jan Schmidt

View file

@ -217,6 +217,7 @@ gst_riff_create_video_caps (guint32 codec_fcc,
*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);
if (codec_name)