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/mp4_plugin.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/decoder/mp4_plugin.c') diff --git a/src/decoder/mp4_plugin.c b/src/decoder/mp4_plugin.c index f97ffe50a..67d85ba0b 100644 --- a/src/decoder/mp4_plugin.c +++ b/src/decoder/mp4_plugin.c @@ -275,6 +275,15 @@ mp4_decode(struct decoder *mpd_decoder, struct input_stream *input_stream) scale = frame_info.samplerate; #endif audio_format.sample_rate = scale; + + if (!audio_format_valid(&audio_format)) { + g_warning("Invalid audio format: %u:%u:%u\n", + audio_format.sample_rate, + audio_format.bits, + audio_format.channels); + break; + } + decoder_initialized(mpd_decoder, &audio_format, input_stream->seekable, total_time); -- cgit v1.2.3