Fail mp3 loading when attempting to load invalid mp3s
This also adds a warning for unspecified MP3 loading error codes
This commit is contained in:
parent
8fa92c70ea
commit
936767deca
1 changed files with 2 additions and 1 deletions
|
@ -159,7 +159,8 @@ void AudioStreamMP3::set_data(const Vector<uint8_t> &p_data) {
|
||||||
const uint8_t *src_datar = p_data.ptr();
|
const uint8_t *src_datar = p_data.ptr();
|
||||||
|
|
||||||
mp3dec_ex_t mp3d;
|
mp3dec_ex_t mp3d;
|
||||||
mp3dec_ex_open_buf(&mp3d, src_datar, src_data_len, MP3D_SEEK_TO_SAMPLE);
|
int err = mp3dec_ex_open_buf(&mp3d, src_datar, src_data_len, MP3D_SEEK_TO_SAMPLE);
|
||||||
|
ERR_FAIL_COND(err != 0);
|
||||||
|
|
||||||
channels = mp3d.info.channels;
|
channels = mp3d.info.channels;
|
||||||
sample_rate = mp3d.info.hz;
|
sample_rate = mp3d.info.hz;
|
||||||
|
|
Loading…
Reference in a new issue