diff options
author | Max Kellermann <max@duempel.org> | 2011-10-10 08:11:04 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-10-10 10:24:05 +0200 |
commit | 0847ca4ec2e137d0eaa235d653217e8a913187f8 (patch) | |
tree | 2d00b5b7e7700ee216890b83f86c6528090079a1 /test/read_mixer.c | |
parent | 572d8d0cc486dce64c0f6239cc27598068c1085d (diff) | |
download | mpd-0847ca4ec2e137d0eaa235d653217e8a913187f8.tar.gz mpd-0847ca4ec2e137d0eaa235d653217e8a913187f8.tar.xz mpd-0847ca4ec2e137d0eaa235d653217e8a913187f8.zip |
pcm_{mix,volume}: pass only sample_format to pcm_mix()
The other audio_format attributes are not used.
Diffstat (limited to '')
-rw-r--r-- | test/read_mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/read_mixer.c b/test/read_mixer.c index 6d7ec3458..bf17e8f65 100644 --- a/test/read_mixer.c +++ b/test/read_mixer.c @@ -116,7 +116,7 @@ filter_plugin_by_name(G_GNUC_UNUSED const char *name) bool pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED int length, - G_GNUC_UNUSED const struct audio_format *format, + G_GNUC_UNUSED enum sample_format format, G_GNUC_UNUSED int volume) { assert(false); |