Allow wrong .AT3 again for old demuxed videos

This commit is contained in:
bnnm 2021-07-23 19:16:11 +02:00
parent 039541f881
commit 4def2fd7e2

View File

@ -35,9 +35,12 @@ VGMSTREAM* init_vgmstream_ffmpeg(STREAMFILE* sf) {
if (get_streamfile_size(sf) <= 0x1000)
goto fail;
// many PSP rips have poorly demuxed videos with a failty RIFF, allow for now
#if 0
/* reject some formats handled elsewhere (better fail and check there than let buggy FFmpeg take over) */
if (check_extensions(sf, "at3"))
goto fail;
#endif
if (target_subsong == 0) target_subsong = 1;