diff --git a/src/coding/coding.h b/src/coding/coding.h index 8f56eb00..22c08405 100644 --- a/src/coding/coding.h +++ b/src/coding/coding.h @@ -137,8 +137,8 @@ void decode_nds_procyon(VGMSTREAMCHANNEL * stream, sample * outbuf, int channels /* l5_555_decoder */ void decode_l5_555(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do); -/* SASSC_decoder */ -void decode_SASSC(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do); +/* sassc_decoder */ +void decode_sassc(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do); /* lsf_decode */ void decode_lsf(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do); diff --git a/src/coding/sassc_decoder.c b/src/coding/sassc_decoder.c index f3912286..59917bfd 100644 --- a/src/coding/sassc_decoder.c +++ b/src/coding/sassc_decoder.c @@ -63,7 +63,7 @@ int32_t SASSC_steps[256] = -53261, -54797, -56333, -57870, -59406, -60942, -62479, 64015, }; -void decode_SASSC(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) { +void decode_sassc(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) { int i; int32_t sample_count; int32_t hist = stream->adpcm_history1_32; diff --git a/src/vgmstream.c b/src/vgmstream.c index be093920..55604cfc 100644 --- a/src/vgmstream.c +++ b/src/vgmstream.c @@ -1909,7 +1909,7 @@ void decode_vgmstream(VGMSTREAM * vgmstream, int samples_written, int samples_to break; case coding_SASSC: for (ch = 0; ch < vgmstream->channels; ch++) { - decode_SASSC(&vgmstream->ch[ch],buffer+samples_written*vgmstream->channels+ch, + decode_sassc(&vgmstream->ch[ch],buffer+samples_written*vgmstream->channels+ch, vgmstream->channels,vgmstream->samples_into_block,samples_to_do); }