mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-20 18:35:52 +01:00
79 lines
1.9 KiB
C
79 lines
1.9 KiB
C
#include "coding.h"
|
|
#include "../util.h"
|
|
|
|
#ifdef VGM_USE_G719
|
|
#include "../stack_alloc.h"
|
|
|
|
g719_codec_data *init_g719(int channel_count, int frame_size) {
|
|
int i;
|
|
g719_codec_data *data = NULL;
|
|
|
|
data = calloc(channel_count, sizeof(g719_codec_data)); /* one decoder per channel */
|
|
if (!data) goto fail;
|
|
|
|
for (i = 0; i < channel_count; i++) {
|
|
data[i].handle = g719_init(frame_size); /* Siren 22 == 22khz bandwidth */
|
|
if (!data[i].handle) goto fail;
|
|
}
|
|
|
|
return data;
|
|
|
|
fail:
|
|
if (data) {
|
|
for (i = 0; i < channel_count; i++) {
|
|
g719_free(data[i].handle);
|
|
}
|
|
}
|
|
free(data);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void decode_g719(VGMSTREAM * vgmstream, sample * outbuf, int channelspacing, int32_t samples_to_do, int channel) {
|
|
VGMSTREAMCHANNEL *ch = &vgmstream->ch[channel];
|
|
g719_codec_data *data = vgmstream->codec_data;
|
|
g719_codec_data *ch_data = &data[channel];
|
|
int i;
|
|
|
|
if (0 == vgmstream->samples_into_block)
|
|
{
|
|
VARDECL(int16_t,code_buffer);
|
|
ALLOC(code_buffer, vgmstream->interleave_block_size / 2, int16_t);
|
|
vgmstream->ch[channel].streamfile->read(ch->streamfile, (uint8_t*)code_buffer, ch->offset, vgmstream->interleave_block_size);
|
|
g719_decode_frame(ch_data->handle, code_buffer, ch_data->buffer);
|
|
}
|
|
|
|
for (i = 0; i < samples_to_do; i++)
|
|
{
|
|
outbuf[i*channelspacing] = ch_data->buffer[vgmstream->samples_into_block+i];
|
|
}
|
|
}
|
|
|
|
|
|
void reset_g719(VGMSTREAM *vgmstream) {
|
|
g719_codec_data *data = vgmstream->codec_data;
|
|
int i;
|
|
|
|
for (i = 0; i < vgmstream->channels; i++)
|
|
{
|
|
g719_reset(data[i].handle);
|
|
}
|
|
}
|
|
|
|
void free_g719(VGMSTREAM *vgmstream) {
|
|
g719_codec_data *data = (g719_codec_data *) vgmstream->codec_data;
|
|
|
|
if (data)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < vgmstream->channels; i++)
|
|
{
|
|
g719_free(data[i].handle);
|
|
}
|
|
free(data);
|
|
}
|
|
}
|
|
|
|
#endif
|