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;
|
|
|
|
}
|
2008-12-24 08:19:15 +01:00
|
|
|
|
|
|
|
void adx_next_key(VGMSTREAMCHANNEL * stream)
|
|
|
|
{
|
|
|
|
stream->adx_xor = ( stream->adx_xor * stream->adx_mult + stream->adx_add ) & 0x7fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
void decode_adx_enc(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do) {
|
|
|
|
int i;
|
|
|
|
int32_t sample_count;
|
|
|
|
|
|
|
|
int framesin = first_sample/32;
|
|
|
|
|
2011-08-20 14:00:01 +02:00
|
|
|
int32_t scale = ((read_16bitBE(stream->offset+framesin*18,stream->streamfile) ^ stream->adx_xor)&0x1fff) + 1;
|
2008-12-24 08:19:15 +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];
|
|
|
|
|
|
|
|
first_sample = first_sample%32;
|
|
|
|
|
|
|
|
for (i=first_sample,sample_count=0; i<first_sample+samples_to_do; i++,sample_count+=channelspacing) {
|
|
|
|
int sample_byte = read_8bit(stream->offset+framesin*18+2+i/2,stream->streamfile);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (!(i % 32)) {
|
|
|
|
for (i=0;i<stream->adx_channels;i++)
|
|
|
|
{
|
|
|
|
adx_next_key(stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|