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 /src/pcm_volume.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-- | src/pcm_volume.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c index 69c239cb8..7d9d2fe42 100644 --- a/src/pcm_volume.c +++ b/src/pcm_volume.c @@ -139,7 +139,7 @@ pcm_volume_change_32(int32_t *buffer, unsigned num_samples, int volume) bool pcm_volume(void *buffer, int length, - const struct audio_format *format, + enum sample_format format, int volume) { if (volume == PCM_VOLUME_1) @@ -150,7 +150,7 @@ pcm_volume(void *buffer, int length, return true; } - switch (format->format) { + switch (format) { case SAMPLE_FORMAT_S8: pcm_volume_change_8((int8_t *)buffer, length, volume); return true; |