Update rsd.c

Fix failure case for compiling without FFmpeg.
This commit is contained in:
Christopher Snowhill 2018-03-24 16:22:52 -07:00 committed by GitHub
parent 3822391cf2
commit 3ff69d191d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1141,10 +1141,10 @@ VGMSTREAM * init_vgmstream_rsd6at3p(STREAMFILE *streamFile) {
}
ffmpeg_set_skip_samples(ffmpeg_data, fact_skip_samples);
}
#else
goto fail;
#endif
}
#else
goto fail;
#endif
if (!vgmstream_open_stream(vgmstream, streamFile, start_offset))
goto fail;