From 976d5045c671700b1e16ed2b98e746a67fa91e8b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 21 Nov 2008 20:27:30 +0100 Subject: decoder: check audio_format_valid() in all decoders Refuse to play audio formats which are not supported by MPD. --- src/decoder/flac_plugin.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/decoder/flac_plugin.c') diff --git a/src/decoder/flac_plugin.c b/src/decoder/flac_plugin.c index 4767e35b0..09757f091 100644 --- a/src/decoder/flac_plugin.c +++ b/src/decoder/flac_plugin.c @@ -343,6 +343,14 @@ flac_decode_internal(struct decoder * decoder, struct input_stream *inStream, goto fail; } + if (!audio_format_valid(&data.audio_format)) { + g_warning("Invalid audio format: %u:%u:%u\n", + data.audio_format.sample_rate, + data.audio_format.bits, + data.audio_format.channels); + goto fail; + } + decoder_initialized(decoder, &data.audio_format, inStream->seekable, data.total_time); -- cgit v1.2.3