2008-05-06 05:35:37 +02:00
|
|
|
#include "coding.h"
|
2008-02-04 13:23:35 +01:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void decode_adx(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) {
|
2008-02-05 01:03:39 +01:00
|
|
|
int i;
|
2008-02-04 13:23:35 +01:00
|
|
|
int32_t sample_count;
|
|
|
|
|
2008-02-05 01:03:39 +01:00
|
|
|
int framesin = first_sample/32;
|
|
|
|
|
|
|
|
int32_t scale = read_16bitBE(stream->offset+framesin*18,stream->streamfile) + 1;
|
2008-02-04 13:23:35 +01:00
|
|
|
int32_t hist1 = stream->adpcm_history1_32;
|
|
|
|
int32_t hist2 = stream->adpcm_history2_32;
|
|
|
|
int coef1 = stream->adpcm_coef[0];
|
|
|
|
int coef2 = stream->adpcm_coef[1];
|
|
|
|
|
2008-02-05 01:03:39 +01:00
|
|
|
first_sample = first_sample%32;
|
|
|
|
|
2008-02-04 13:23:35 +01:00
|
|
|
for (i=first_sample,sample_count=0; i<first_sample+samples_to_do; i++,sample_count+=channelspacing) {
|
2008-02-05 01:03:39 +01:00
|
|
|
int sample_byte = read_8bit(stream->offset+framesin*18+2+i/2,stream->streamfile);
|
2008-02-04 13:23:35 +01:00
|
|
|
|
|
|
|
outbuf[sample_count] = clamp16(
|
|
|
|
(i&1?
|
|
|
|
get_low_nibble_signed(sample_byte):
|
|
|
|
get_high_nibble_signed(sample_byte)
|
|
|
|
) * scale +
|
|
|
|
((coef1 * hist1 + coef2 * hist2) >> 12)
|
|
|
|
);
|
|
|
|
|
|
|
|
hist2 = hist1;
|
|
|
|
hist1 = outbuf[sample_count];
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->adpcm_history1_32 = hist1;
|
|
|
|
stream->adpcm_history2_32 = hist2;
|
|
|
|
}
|