aboutsummaryrefslogtreecommitdiff
path: root/src/filter/null_filter_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-12-25 14:27:32 +0100
committerMax Kellermann <max@duempel.org>2009-12-25 17:29:41 +0100
commitb54bde6f2b9f826cd7189182d733aada66c95dd8 (patch)
treef07f7b57f0d83879e6aa35ba3bbdaa06b4cbf4f1 /src/filter/null_filter_plugin.c
parentd2051c7f50deff0532566c070aaf4fec5d774558 (diff)
filter_plugin: allow open() to force an input format
Make the audio_format argument non-const. Allow the open() method to modify it, to indicate that it wants a different input audio format than the one specified. Check that condition in chain_filter_open(), and fail.
Diffstat (limited to 'src/filter/null_filter_plugin.c')
-rw-r--r--src/filter/null_filter_plugin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/filter/null_filter_plugin.c b/src/filter/null_filter_plugin.c
index 5671ba90..d677780d 100644
--- a/src/filter/null_filter_plugin.c
+++ b/src/filter/null_filter_plugin.c
@@ -54,8 +54,7 @@ null_filter_finish(struct filter *_filter)
}
static const struct audio_format *
-null_filter_open(struct filter *_filter,
- const struct audio_format *audio_format,
+null_filter_open(struct filter *_filter, struct audio_format *audio_format,
G_GNUC_UNUSED GError **error_r)
{
struct null_filter *filter = (struct null_filter *)_filter;