From b7bfa24f22a3a5a7709ce425ffc84bd4bb64be08 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 2 Mar 2009 09:42:16 +0100 Subject: pcm_volume: return bool Don't abort MPD when a sample format is not supported by pcm_volume(). --- test/read_tags.c | 3 ++- test/run_decoder.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'test') 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 { -- cgit v1.2.3