summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/ad_mp3.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/ad_mp3.c')
-rw-r--r--libmpcodecs/ad_mp3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libmpcodecs/ad_mp3.c b/libmpcodecs/ad_mp3.c
index 57309a34bf..e4b8f9c4bc 100644
--- a/libmpcodecs/ad_mp3.c
+++ b/libmpcodecs/ad_mp3.c
@@ -46,6 +46,7 @@ static int init(sh_audio_t *sh)
#endif
MP3_samplerate=MP3_channels=0;
sh->a_buffer_len=MP3_DecodeFrame(sh->a_buffer,-1);
+ if(!sh->a_buffer_len) return 0; // unsupported layer/format
sh->channels=2; // hack
sh->samplerate=MP3_samplerate;
sh->i_bps=MP3_bitrate*(1000/8);