ffmpeg: fix smacker .smk

- broken in new versions due to buggy seeking
This commit is contained in:
bnnm 2023-01-15 17:49:57 +01:00
parent daf1f3721e
commit a1c85b10e8

View File

@ -43,6 +43,9 @@ VGMSTREAM* init_vgmstream_smk(STREAMFILE *sf) {
if (!vgmstream->codec_data) goto fail;
vgmstream->coding_type = coding_FFmpeg;
vgmstream->layout_type = layout_none;
// wrong decoding otherwise
ffmpeg_set_force_seek(vgmstream->codec_data);
#else
goto fail;
#endif