mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-01 09:37:21 +01:00
Rename decode_SASSC to lowercase for consistency
This commit is contained in:
parent
c707a29639
commit
bf0d46a476
@ -137,8 +137,8 @@ void decode_nds_procyon(VGMSTREAMCHANNEL * stream, sample * outbuf, int channels
|
|||||||
/* l5_555_decoder */
|
/* l5_555_decoder */
|
||||||
void decode_l5_555(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
void decode_l5_555(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
||||||
|
|
||||||
/* SASSC_decoder */
|
/* sassc_decoder */
|
||||||
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);
|
||||||
|
|
||||||
/* lsf_decode */
|
/* lsf_decode */
|
||||||
void decode_lsf(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
void decode_lsf(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
||||||
|
@ -63,7 +63,7 @@ int32_t SASSC_steps[256] =
|
|||||||
-53261, -54797, -56333, -57870, -59406, -60942, -62479, 64015,
|
-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;
|
int i;
|
||||||
int32_t sample_count;
|
int32_t sample_count;
|
||||||
int32_t hist = stream->adpcm_history1_32;
|
int32_t hist = stream->adpcm_history1_32;
|
||||||
|
@ -1909,7 +1909,7 @@ void decode_vgmstream(VGMSTREAM * vgmstream, int samples_written, int samples_to
|
|||||||
break;
|
break;
|
||||||
case coding_SASSC:
|
case coding_SASSC:
|
||||||
for (ch = 0; ch < vgmstream->channels; ch++) {
|
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);
|
vgmstream->channels,vgmstream->samples_into_block,samples_to_do);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user