gst-libs/gst/riff/riff-media.c: Fix another codecname mismatch.

Original commit message from CVS:
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
Fix another codecname mismatch.
This commit is contained in:
Ronald S. Bultje 2004-04-11 19:33:55 +00:00
parent d62f89b5d7
commit 1b72d42dc4
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
Fix another codecname mismatch.
2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):

View file

@ -257,7 +257,7 @@ gst_riff_create_audio_caps (guint16 codec_id,
*codec_name = g_strdup ("MPEG 1 layer 2");
break;
case GST_RIFF_WAVE_FORMAT_PCM: /* PCM/wav */
case GST_RIFF_WAVE_FORMAT_PCM: /* PCM */
if (strf != NULL) {
gint ba = GUINT16_FROM_LE (strf->blockalign);
gint ch = GUINT16_FROM_LE (strf->channels);
@ -274,7 +274,7 @@ gst_riff_create_audio_caps (guint16 codec_id,
"width = (int) { 8, 16 }, " "height = (int) { 8, 16 }");
}
if (codec_name)
*codec_name = g_strdup ("PCM WAV");
*codec_name = g_strdup ("Uncompressed PCM audio");
break;
case GST_RIFF_WAVE_FORMAT_MULAW: