diff options
author | Max Kellermann <max@duempel.org> | 2009-03-02 09:42:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-02 09:42:16 +0100 |
commit | b7bfa24f22a3a5a7709ce425ffc84bd4bb64be08 (patch) | |
tree | 661eef7a3aa2d5d4b153d23b5703c35502bc2262 /test | |
parent | 0579b6ed27a995d6c700f3684b023fb2fda7e616 (diff) | |
download | mpd-b7bfa24f22a3a5a7709ce425ffc84bd4bb64be08.tar.gz mpd-b7bfa24f22a3a5a7709ce425ffc84bd4bb64be08.tar.xz mpd-b7bfa24f22a3a5a7709ce425ffc84bd4bb64be08.zip |
pcm_volume: return bool
Don't abort MPD when a sample format is not supported by pcm_volume().
Diffstat (limited to 'test')
-rw-r--r-- | test/read_tags.c | 3 | ||||
-rw-r--r-- | test/run_decoder.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/test/read_tags.c b/test/read_tags.c index cdee3722f..1b223f074 100644 --- a/test/read_tags.c +++ b/test/read_tags.c @@ -32,11 +32,12 @@ /** * No-op dummy. */ -void +bool pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED int length, G_GNUC_UNUSED const struct audio_format *format, G_GNUC_UNUSED int volume) { + return true; } void diff --git a/test/run_decoder.c b/test/run_decoder.c index 8d11494c7..6bd331b02 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -30,11 +30,12 @@ /** * No-op dummy. */ -void +bool pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED int length, G_GNUC_UNUSED const struct audio_format *format, G_GNUC_UNUSED int volume) { + return true; } struct decoder { |