mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
gst-libs/gst/riff/riff-media.c: Fix case where we don't have a range for the rates or channels as is the case with tr...
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps): Fix case where we don't have a range for the rates or channels as is the case with truespeech.
This commit is contained in:
parent
8e07d4ec69
commit
7ae1871c75
2 changed files with 16 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-11-06 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
|
||||
Fix case where we don't have a range for the rates or channels as is the
|
||||
case with truespeech.
|
||||
|
||||
2008-11-05 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/volume/gstvolume.c: (volume_update_real_volume),
|
||||
|
|
|
@ -1408,9 +1408,16 @@ gst_riff_create_audio_caps (guint16 codec_id,
|
|||
}
|
||||
} else {
|
||||
if (rate_chan) {
|
||||
gst_caps_set_simple (caps,
|
||||
"rate", GST_TYPE_INT_RANGE, rate_min, rate_max,
|
||||
"channels", GST_TYPE_INT_RANGE, 1, channels_max, NULL);
|
||||
if (rate_min == rate_max)
|
||||
gst_caps_set_simple (caps, "rate", G_TYPE_INT, rate_min, NULL);
|
||||
else
|
||||
gst_caps_set_simple (caps,
|
||||
"rate", GST_TYPE_INT_RANGE, rate_min, rate_max, NULL);
|
||||
if (channels_max == 1)
|
||||
gst_caps_set_simple (caps, "channels", G_TYPE_INT, 1, NULL);
|
||||
else
|
||||
gst_caps_set_simple (caps,
|
||||
"channels", GST_TYPE_INT_RANGE, 1, channels_max, NULL);
|
||||
}
|
||||
if (block_align) {
|
||||
gst_caps_set_simple (caps,
|
||||
|
|
Loading…
Reference in a new issue