This commit is contained in:
bnnm 2019-04-07 01:48:18 +02:00
parent dd847f3041
commit a6cd96616e

View File

@ -1731,6 +1731,7 @@ int ext_output_channels = 0;
static void *winampGetExtendedRead_open_common(in_char *fn, int *size, int *bps, int *nch, int *srate)
{
VGMSTREAM *ext_vgmstream = NULL;
in_char filename[PATH_LIMIT];
int stream_index = 0;
@ -1739,7 +1740,7 @@ static void *winampGetExtendedRead_open_common(in_char *fn, int *size, int *bps,
parse_fn_int(fn, wa_L("$s"), &stream_index);
/* open the stream */
VGMSTREAM *ext_vgmstream = init_vgmstream_winamp(filename, stream_index);
ext_vgmstream = init_vgmstream_winamp(filename, stream_index);
if (!ext_vgmstream) {
return NULL;
}