diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 108bd7e5f..73d9379a5 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -297,6 +297,9 @@ int decodeNextFrameHeader(mp3DecodeData * data, MpdTag ** tag) { } } } + if(data->frame.header.layer != MAD_LAYER_III) { + return DECODE_SKIP; + } return DECODE_OK; }