gst-libs/gst/riff/riff-media.c: Change minimum rate back to 1000 to allow low-sample-rate wav files to play back.

Original commit message from CVS:
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
Change minimum rate back to 1000 to allow low-sample-rate wav files
to play back.
This commit is contained in:
Michael Smith 2007-06-19 09:34:35 +00:00
parent f1105b2d06
commit ba06a86e01
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2007-06-19 Michael Smith <msmith@fluendo.com>
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
Change minimum rate back to 1000 to allow low-sample-rate wav files
to play back.
2007-06-17 Thomas Vander Stichele <thomas at apestaart dot org>
* po/vi.po:

View file

@ -748,7 +748,7 @@ gst_riff_create_audio_caps (guint16 codec_id,
{
gboolean block_align = FALSE, rate_chan = TRUE;
GstCaps *caps = NULL;
gint rate_min = 8000, rate_max = 96000;
gint rate_min = 1000, rate_max = 96000;
gint channels_max = 2;
switch (codec_id) {