aboutsummaryrefslogtreecommitdiff
path: root/src/filter
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-12-25 17:29:27 +0100
committerMax Kellermann <max@duempel.org>2009-12-25 17:29:27 +0100
commitd2051c7f50deff0532566c070aaf4fec5d774558 (patch)
tree49383ede0af17dad60efb4e36f148fb4bc74b169 /src/filter
parentbd29f7e3c880ff58a80aca84d951e1da9df788e7 (diff)
filter/volume: support 32 bit samples
The pcm_volume library supports 32 bit samples, there's no reason to disallow it in the filter plugin.
Diffstat (limited to 'src/filter')
-rw-r--r--src/filter/volume_filter_plugin.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/filter/volume_filter_plugin.c b/src/filter/volume_filter_plugin.c
index 285a4b7a..11549784 100644
--- a/src/filter/volume_filter_plugin.c
+++ b/src/filter/volume_filter_plugin.c
@@ -75,14 +75,6 @@ volume_filter_open(struct filter *_filter,
{
struct volume_filter *filter = (struct volume_filter *)_filter;
- if (audio_format->format != SAMPLE_FORMAT_S8 &&
- audio_format->format != SAMPLE_FORMAT_S16 &&
- audio_format->format != SAMPLE_FORMAT_S24_P32) {
- g_set_error(error_r, volume_quark(), 0,
- "Unsupported audio format");
- return false;
- }
-
if (audio_format->reverse_endian) {
g_set_error(error_r, volume_quark(), 0,
"Software volume for reverse endian "