2008-05-06 05:35:37 +02:00
|
|
|
#ifndef _CODING_H
|
|
|
|
#define _CODING_H
|
|
|
|
|
|
|
|
#include "../vgmstream.h"
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* adx_decoder */
|
2017-05-13 22:17:27 +02:00
|
|
|
void decode_adx(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int32_t frame_bytes);
|
2017-05-14 00:37:24 +02:00
|
|
|
void decode_adx_exp(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int32_t frame_bytes);
|
2017-05-13 23:04:30 +02:00
|
|
|
void decode_adx_fixed(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int32_t frame_bytes);
|
2017-05-13 22:17:27 +02:00
|
|
|
void decode_adx_enc(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int32_t frame_bytes);
|
2008-12-24 08:19:15 +01:00
|
|
|
void adx_next_key(VGMSTREAMCHANNEL * stream);
|
2008-05-06 05:35:37 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* g721_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_g721(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
void g72x_init_state(struct g72x_state *state_ptr);
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* ima_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_nds_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2009-12-16 07:12:53 +01:00
|
|
|
void decode_dat4_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-09-21 16:58:50 +02:00
|
|
|
void decode_xbox_ima(VGMSTREAM * vgmstream,VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
2017-10-27 18:56:34 +02:00
|
|
|
void decode_xbox_ima_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
2011-02-06 10:49:57 +01:00
|
|
|
void decode_snds_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-11-17 17:18:17 +01:00
|
|
|
void decode_standard_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel, int is_stereo, int is_high_first);
|
2017-11-18 22:25:44 +01:00
|
|
|
void decode_3ds_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2009-09-12 06:51:39 +02:00
|
|
|
void decode_rad_ima(VGMSTREAM * vgmstream,VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
2010-04-10 14:06:25 +02:00
|
|
|
void decode_rad_ima_mono(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2009-08-30 04:16:54 +02:00
|
|
|
void decode_apple_ima4(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
void decode_ms_ima(VGMSTREAM * vgmstream,VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
2017-01-25 20:25:39 +01:00
|
|
|
void decode_otns_ima(VGMSTREAM * vgmstream, VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-02-04 23:17:56 +01:00
|
|
|
void decode_fsb_ima(VGMSTREAM * vgmstream, VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-04-11 19:59:29 +02:00
|
|
|
void decode_wwise_ima(VGMSTREAM * vgmstream, VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-08-28 16:07:09 +02:00
|
|
|
void decode_ref_ima(VGMSTREAM * vgmstream, VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
|
|
|
void decode_awc_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-11-05 17:06:40 +01:00
|
|
|
void decode_ubi_ima(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-04-11 19:59:29 +02:00
|
|
|
size_t ms_ima_bytes_to_samples(size_t bytes, int block_align, int channels);
|
2017-07-23 12:49:10 +02:00
|
|
|
size_t ima_bytes_to_samples(size_t bytes, int channels);
|
2017-11-05 17:06:40 +01:00
|
|
|
size_t ubi_ima_bytes_to_samples(size_t bytes, int channels, STREAMFILE *streamFile, off_t offset);
|
2008-05-06 05:35:37 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* ngc_dsp_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_ngc_dsp(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-12-06 21:04:04 +01:00
|
|
|
void decode_ngc_dsp_subint(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel, int interleave);
|
2017-04-07 16:23:43 +02:00
|
|
|
size_t dsp_bytes_to_samples(size_t bytes, int channels);
|
2008-05-06 05:35:37 +02:00
|
|
|
int32_t dsp_nibbles_to_samples(int32_t nibbles);
|
2017-01-13 23:56:48 +01:00
|
|
|
void dsp_read_coefs_be(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing);
|
2017-01-25 22:20:01 +01:00
|
|
|
void dsp_read_coefs_le(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing);
|
|
|
|
void dsp_read_coefs(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing, int be);
|
2017-08-12 18:39:56 +02:00
|
|
|
void dsp_read_hist_be(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing);
|
|
|
|
void dsp_read_hist_le(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing);
|
|
|
|
void dsp_read_hist(VGMSTREAM * vgmstream, STREAMFILE *streamFile, off_t offset, off_t spacing, int be);
|
2008-05-06 05:35:37 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* ngc_dtk_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_ngc_dtk(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* ngc_afc_decoder */
|
|
|
|
void decode_ngc_afc(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
|
|
|
|
/* pcm_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_pcm16LE(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2010-08-28 03:43:40 +02:00
|
|
|
void decode_pcm16LE_XOR_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_pcm16BE(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-08-27 22:17:13 +02:00
|
|
|
void decode_pcm16_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int big_endian);
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_pcm8(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-14 22:42:49 +02:00
|
|
|
void decode_pcm8_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-30 22:58:50 +02:00
|
|
|
void decode_pcm8_sb_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-11-23 13:21:36 +01:00
|
|
|
void decode_pcm8_unsigned_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2009-04-28 18:52:49 +02:00
|
|
|
void decode_pcm8_unsigned(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-06-09 22:26:09 +02:00
|
|
|
void decode_ulaw(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-12-24 01:39:24 +01:00
|
|
|
void decode_ulaw_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-10-08 17:51:54 +02:00
|
|
|
void decode_alaw(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-08-27 22:17:13 +02:00
|
|
|
void decode_pcmfloat(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int big_endian);
|
2017-04-07 16:23:43 +02:00
|
|
|
size_t pcm_bytes_to_samples(size_t bytes, int channels, int bits_per_sample);
|
2008-05-06 05:35:37 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* psx_decoder */
|
2008-05-06 05:35:37 +02:00
|
|
|
void decode_psx(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-25 21:02:29 +02:00
|
|
|
void decode_psx_badflags(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_psx_bmdx(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
void decode_psx_configurable(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int frame_size);
|
|
|
|
void decode_hevag(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2017-04-07 16:23:43 +02:00
|
|
|
size_t ps_bytes_to_samples(size_t bytes, int channels);
|
2008-07-25 21:02:29 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* xa_decoder */
|
2008-07-14 22:42:49 +02:00
|
|
|
void decode_xa(VGMSTREAM * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2017-11-16 19:47:42 +01:00
|
|
|
void xa_init_get_high_nibble(VGMSTREAM * vgmstream);
|
|
|
|
size_t xa_bytes_to_samples(size_t bytes, int channels, int is_blocked);
|
2008-05-11 03:55:13 +02:00
|
|
|
|
2017-08-20 02:18:48 +02:00
|
|
|
/* ea_xa_decoder */
|
2017-07-21 19:19:58 +02:00
|
|
|
void decode_ea_xa(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
void decode_ea_xa_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
void decode_ea_xa_v2(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do,int channel);
|
|
|
|
void decode_maxis_xa(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
2008-06-02 19:58:08 +02:00
|
|
|
|
2017-08-20 02:18:48 +02:00
|
|
|
/* ea_xas_decoder */
|
|
|
|
void decode_ea_xas(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* sdx2_decoder */
|
2008-07-01 05:23:44 +02:00
|
|
|
void decode_sdx2(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-14 22:42:49 +02:00
|
|
|
void decode_sdx2_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2010-07-27 14:24:03 +02:00
|
|
|
void decode_cbd2(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
void decode_cbd2_int(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-01 05:23:44 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* ws_decoder */
|
2008-07-04 02:06:51 +02:00
|
|
|
void decode_ws(VGMSTREAM * vgmstream, int channel, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
2008-07-03 23:21:01 +02:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* acm_decoder */
|
|
|
|
void decode_acm(ACMStream * acm, sample * outbuf, int32_t samples_to_do, int channelspacing);
|
|
|
|
|
|
|
|
/* nwa_decoder */
|
|
|
|
void decode_nwa(NWAData *nwa, sample *outbuf, int32_t samples_to_do);
|
|
|
|
|
|
|
|
/* msadpcm_decoder */
|
|
|
|
void decode_msadpcm_stereo(VGMSTREAM * vgmstream, sample * outbuf, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
void decode_msadpcm_mono(VGMSTREAM * vgmstream, sample * outbuf, int32_t first_sample, int32_t samples_to_do);
|
2017-04-07 16:23:43 +02:00
|
|
|
long msadpcm_bytes_to_samples(long bytes, int block_size, int channels);
|
2017-01-08 01:09:20 +01:00
|
|
|
|
|
|
|
/* aica_decoder */
|
|
|
|
void decode_aica(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
|
|
|
|
/* nds_procyon_decoder */
|
|
|
|
void decode_nds_procyon(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
|
|
|
/* lsf_decode */
|
|
|
|
void decode_lsf(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
|
|
|
|
|
|
|
|
/* mtaf_decoder */
|
|
|
|
void decode_mtaf(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel, int channels);
|
|
|
|
|
2017-05-18 19:16:44 +02:00
|
|
|
/* mta2_decoder */
|
|
|
|
void decode_mta2(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
|
2017-04-28 17:26:25 +02:00
|
|
|
/* mc3_decoder */
|
|
|
|
void decode_mc3(VGMSTREAM * vgmstream, VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
|
2017-12-03 13:44:55 +01:00
|
|
|
/* ea_mt_decoder*/
|
|
|
|
ea_mt_codec_data *init_ea_mt(int channel_count, int type);
|
|
|
|
void decode_ea_mt(VGMSTREAM * vgmstream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int channel);
|
|
|
|
void reset_ea_mt(VGMSTREAM * vgmstream);
|
|
|
|
void flush_ea_mt(VGMSTREAM *vgmstream);
|
|
|
|
void seek_ea_mt(VGMSTREAM * vgmstream, int32_t num_sample);
|
|
|
|
void free_ea_mt(ea_mt_codec_data *data);
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
/* hca_decoder */
|
|
|
|
void decode_hca(hca_codec_data * data, sample * outbuf, int32_t samples_to_do, int channels);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_hca(VGMSTREAM *vgmstream);
|
|
|
|
void loop_hca(VGMSTREAM *vgmstream);
|
|
|
|
void free_hca(hca_codec_data * data);
|
2017-03-25 14:57:44 +01:00
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
#ifdef VGM_USE_VORBIS
|
2017-03-25 14:57:44 +01:00
|
|
|
/* ogg_vorbis_decoder */
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_ogg_vorbis(ogg_vorbis_codec_data * data, sample * outbuf, int32_t samples_to_do, int channels);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_ogg_vorbis(VGMSTREAM *vgmstream);
|
|
|
|
void seek_ogg_vorbis(VGMSTREAM *vgmstream, int32_t num_sample);
|
|
|
|
void free_ogg_vorbis(ogg_vorbis_codec_data *data);
|
2017-03-25 14:57:44 +01:00
|
|
|
|
2017-07-28 23:26:58 +02:00
|
|
|
/* vorbis_custom_decoder */
|
|
|
|
vorbis_custom_codec_data * init_vorbis_custom_codec_data(STREAMFILE *streamfile, off_t start_offset, vorbis_custom_t type, vorbis_custom_config * config);
|
|
|
|
void decode_vorbis_custom(VGMSTREAM * vgmstream, sample * outbuf, int32_t samples_to_do, int channels);
|
|
|
|
void reset_vorbis_custom(VGMSTREAM *vgmstream);
|
|
|
|
void seek_vorbis_custom(VGMSTREAM *vgmstream, int32_t num_sample);
|
|
|
|
void free_vorbis_custom(vorbis_custom_codec_data *data);
|
2017-01-08 01:09:20 +01:00
|
|
|
#endif
|
|
|
|
|
2008-07-05 13:49:29 +02:00
|
|
|
#ifdef VGM_USE_MPEG
|
2017-04-29 22:37:15 +02:00
|
|
|
/* mpeg_decoder */
|
2017-02-19 21:16:09 +01:00
|
|
|
mpeg_codec_data *init_mpeg_codec_data(STREAMFILE *streamfile, off_t start_offset, coding_t *coding_type, int channels);
|
2017-07-29 23:14:04 +02:00
|
|
|
mpeg_codec_data *init_mpeg_custom_codec_data(STREAMFILE *streamFile, off_t start_offset, coding_t *coding_type, int channels, mpeg_custom_t custom_type, mpeg_custom_config *config);
|
2017-02-17 17:20:40 +01:00
|
|
|
|
2017-02-18 18:27:21 +01:00
|
|
|
void decode_mpeg(VGMSTREAM * vgmstream, sample * outbuf, int32_t samples_to_do, int channels);
|
2017-02-17 17:20:40 +01:00
|
|
|
void decode_fake_mpeg2_l2(VGMSTREAMCHANNEL * stream, mpeg_codec_data * data, sample * outbuf, int32_t samples_to_do);
|
|
|
|
void reset_mpeg(VGMSTREAM *vgmstream);
|
|
|
|
void seek_mpeg(VGMSTREAM *vgmstream, int32_t num_sample);
|
2017-04-29 22:37:15 +02:00
|
|
|
void free_mpeg(mpeg_codec_data *data);
|
2017-08-05 17:54:50 +02:00
|
|
|
void flush_mpeg(mpeg_codec_data * data);
|
2017-02-17 17:20:40 +01:00
|
|
|
|
2017-02-18 00:17:38 +01:00
|
|
|
long mpeg_bytes_to_samples(long bytes, const mpeg_codec_data *data);
|
2008-07-05 13:49:29 +02:00
|
|
|
#endif
|
|
|
|
|
2010-03-21 05:23:18 +01:00
|
|
|
#ifdef VGM_USE_G7221
|
2017-04-29 22:37:15 +02:00
|
|
|
/* g7221_decoder */
|
2017-10-14 12:41:59 +02:00
|
|
|
g7221_codec_data *init_g7221(int channel_count, int frame_size);
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_g7221(VGMSTREAM *vgmstream, sample * outbuf, int channelspacing, int32_t samples_to_do, int channel);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_g7221(VGMSTREAM *vgmstream);
|
|
|
|
void free_g7221(VGMSTREAM *vgmstream);
|
2010-03-21 05:23:18 +01:00
|
|
|
#endif
|
|
|
|
|
2015-01-25 06:08:25 +01:00
|
|
|
#ifdef VGM_USE_G719
|
2017-04-29 22:37:15 +02:00
|
|
|
/* g719_decoder */
|
2017-10-14 12:41:59 +02:00
|
|
|
g719_codec_data *init_g719(int channel_count, int frame_size);
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_g719(VGMSTREAM *vgmstream, sample * outbuf, int channelspacing, int32_t samples_to_do, int channel);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_g719(VGMSTREAM *vgmstream);
|
|
|
|
void free_g719(VGMSTREAM *vgmstream);
|
2015-01-25 06:08:25 +01:00
|
|
|
#endif
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
#if defined(VGM_USE_MP4V2) && defined(VGM_USE_FDKAAC)
|
2017-04-29 22:37:15 +02:00
|
|
|
/* mp4_aac_decoder */
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_mp4_aac(mp4_aac_codec_data * data, sample * outbuf, int32_t samples_to_do, int channels);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_mp4_aac(VGMSTREAM *vgmstream);
|
|
|
|
void seek_mp4_aac(VGMSTREAM *vgmstream, int32_t num_sample);
|
|
|
|
void free_mp4_aac(mp4_aac_codec_data * data);
|
2017-01-08 01:09:20 +01:00
|
|
|
#endif
|
|
|
|
|
2013-06-26 11:54:15 +02:00
|
|
|
#ifdef VGM_USE_MAIATRAC3PLUS
|
2017-04-29 22:37:15 +02:00
|
|
|
/* at3_decoder */
|
2017-01-08 01:09:20 +01:00
|
|
|
void decode_at3plus(VGMSTREAM *vgmstream, sample * outbuf, int channelspacing, int32_t samples_to_do, int channel);
|
2017-04-29 22:37:15 +02:00
|
|
|
void reset_at3plus(VGMSTREAM *vgmstream);
|
|
|
|
void seek_at3plus(VGMSTREAM *vgmstream, int32_t num_sample);
|
|
|
|
void free_at3plus(maiatrac3plus_codec_data *data);
|
2013-06-26 11:54:15 +02:00
|
|
|
#endif
|
|
|
|
|
2017-04-15 23:19:06 +02:00
|
|
|
#ifdef VGM_USE_FFMPEG
|
2017-04-29 22:37:15 +02:00
|
|
|
/* ffmpeg_decoder */
|
2017-05-19 17:21:22 +02:00
|
|
|
ffmpeg_codec_data * init_ffmpeg_offset(STREAMFILE *streamFile, uint64_t start, uint64_t size);
|
|
|
|
ffmpeg_codec_data * init_ffmpeg_header_offset(STREAMFILE *streamFile, uint8_t * header, uint64_t header_size, uint64_t start, uint64_t size);
|
2017-09-24 18:52:09 +02:00
|
|
|
ffmpeg_codec_data * init_ffmpeg_config(STREAMFILE *streamFile, uint8_t * header, uint64_t header_size, uint64_t start, uint64_t size, ffmpeg_custom_config * config);
|
2017-05-19 17:21:22 +02:00
|
|
|
|
2016-12-01 19:58:51 +01:00
|
|
|
void decode_ffmpeg(VGMSTREAM *stream, sample * outbuf, int32_t samples_to_do, int channels);
|
|
|
|
void reset_ffmpeg(VGMSTREAM *vgmstream);
|
|
|
|
void seek_ffmpeg(VGMSTREAM *vgmstream, int32_t num_sample);
|
2017-05-19 17:21:22 +02:00
|
|
|
void free_ffmpeg(ffmpeg_codec_data *data);
|
2017-01-13 23:47:52 +01:00
|
|
|
|
2017-02-12 13:17:01 +01:00
|
|
|
void ffmpeg_set_skip_samples(ffmpeg_codec_data * data, int skip_samples);
|
2017-09-24 18:52:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
size_t ffmpeg_make_opus_header(uint8_t * buf, int buf_size, int channels, int skip, int sample_rate);
|
2017-09-29 23:28:27 +02:00
|
|
|
size_t ffmpeg_get_eaxma_virtual_size(int channels, off_t real_offset, size_t real_size, STREAMFILE *streamFile);
|
2017-09-30 01:27:47 +02:00
|
|
|
|
|
|
|
size_t switch_opus_get_samples(off_t offset, size_t data_size, int sample_rate, STREAMFILE *streamFile);
|
|
|
|
|
2017-04-15 23:19:06 +02:00
|
|
|
#endif
|
2017-02-12 13:17:01 +01:00
|
|
|
|
2017-04-15 23:19:06 +02:00
|
|
|
/* coding_utils */
|
2017-03-19 00:43:31 +01:00
|
|
|
int ffmpeg_fmt_chunk_swap_endian(uint8_t * chunk, size_t chunk_size, uint16_t codec);
|
2017-01-13 23:47:52 +01:00
|
|
|
int ffmpeg_make_riff_atrac3(uint8_t * buf, size_t buf_size, size_t sample_count, size_t data_size, int channels, int sample_rate, int block_align, int joint_stereo, int encoder_delay);
|
2017-03-09 19:13:05 +01:00
|
|
|
int ffmpeg_make_riff_atrac3plus(uint8_t * buf, size_t buf_size, size_t sample_count, size_t data_size, int channels, int sample_rate, int block_align, int encoder_delay);
|
2017-02-25 17:29:25 +01:00
|
|
|
int ffmpeg_make_riff_xma1(uint8_t * buf, size_t buf_size, size_t sample_count, size_t data_size, int channels, int sample_rate, int stream_mode);
|
2017-01-13 23:47:52 +01:00
|
|
|
int ffmpeg_make_riff_xma2(uint8_t * buf, size_t buf_size, size_t sample_count, size_t data_size, int channels, int sample_rate, int block_count, int block_size);
|
2017-04-15 23:58:19 +02:00
|
|
|
int ffmpeg_make_riff_xma_from_fmt_chunk(uint8_t * buf, size_t buf_size, off_t fmt_offset, size_t fmt_size, size_t data_size, STREAMFILE *streamFile, int big_endian);
|
2017-04-08 13:32:11 +02:00
|
|
|
int ffmpeg_make_riff_xma2_from_xma2_chunk(uint8_t * buf, size_t buf_size, off_t xma2_offset, size_t xma2_size, size_t data_size, STREAMFILE *streamFile);
|
2017-04-07 20:21:55 +02:00
|
|
|
int ffmpeg_make_riff_xwma(uint8_t * buf, size_t buf_size, int codec, size_t data_size, int channels, int sample_rate, int avg_bps, int block_align);
|
2017-02-25 19:52:07 +01:00
|
|
|
|
2017-04-07 20:21:55 +02:00
|
|
|
/* MS audio format's sample info (struct to avoid passing so much stuff, separate for reusing) */
|
2017-02-25 19:52:07 +01:00
|
|
|
typedef struct {
|
2017-10-08 17:34:07 +02:00
|
|
|
/* input */
|
2017-02-25 19:52:07 +01:00
|
|
|
int xma_version;
|
|
|
|
off_t data_offset;
|
|
|
|
size_t data_size;
|
2017-04-07 20:21:55 +02:00
|
|
|
|
2017-10-08 17:34:07 +02:00
|
|
|
int channels; /* for skips */
|
|
|
|
off_t chunk_offset; /* for multistream config */
|
|
|
|
|
2017-02-25 19:52:07 +01:00
|
|
|
/* frame offsets */
|
2017-04-07 20:21:55 +02:00
|
|
|
int loop_flag;
|
2017-02-25 19:52:07 +01:00
|
|
|
uint32_t loop_start_b;
|
|
|
|
uint32_t loop_end_b;
|
|
|
|
uint32_t loop_start_subframe;
|
|
|
|
uint32_t loop_end_subframe;
|
|
|
|
|
|
|
|
/* output */
|
|
|
|
int32_t num_samples;
|
|
|
|
int32_t skip_samples;
|
|
|
|
int32_t loop_start_sample;
|
|
|
|
int32_t loop_end_sample;
|
2017-04-15 23:58:19 +02:00
|
|
|
} ms_sample_data;
|
|
|
|
void xma_get_samples(ms_sample_data * msd, STREAMFILE *streamFile);
|
|
|
|
void wmapro_get_samples(ms_sample_data * msd, STREAMFILE *streamFile, int block_align, int sample_rate, uint32_t decode_flags);
|
2017-04-22 11:30:24 +02:00
|
|
|
void wma_get_samples(ms_sample_data * msd, STREAMFILE *streamFile, int block_align, int sample_rate, uint32_t decode_flags);
|
2017-02-25 19:52:07 +01:00
|
|
|
|
2017-04-08 13:32:11 +02:00
|
|
|
void xma1_parse_fmt_chunk(STREAMFILE *streamFile, off_t chunk_offset, int * channels, int * sample_rate, int * loop_flag, int32_t * loop_start_b, int32_t * loop_end_b, int32_t * loop_subframe, int be);
|
2017-10-08 17:34:07 +02:00
|
|
|
void xma2_parse_fmt_chunk_extra(STREAMFILE *streamFile, off_t chunk_offset, int * loop_flag, int32_t * out_num_samples, int32_t * out_loop_start_sample, int32_t * out_loop_end_sample, int be);
|
2017-04-08 13:32:11 +02:00
|
|
|
void xma2_parse_xma2_chunk(STREAMFILE *streamFile, off_t chunk_offset, int * channels, int * sample_rate, int * loop_flag, int32_t * num_samples, int32_t * loop_start_sample, int32_t * loop_end_sample);
|
|
|
|
|
2017-04-07 21:18:07 +02:00
|
|
|
size_t atrac3_bytes_to_samples(size_t bytes, int full_block_align);
|
|
|
|
size_t atrac3plus_bytes_to_samples(size_t bytes, int full_block_align);
|
|
|
|
|
2017-12-09 17:06:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* An internal struct to pass around and simulate a bitstream. */
|
|
|
|
typedef enum { BITSTREAM_MSF, BITSTREAM_VORBIS } vgm_bitstream_t;
|
|
|
|
typedef struct {
|
|
|
|
uint8_t * buf; /* buffer to read/write*/
|
|
|
|
size_t bufsize; /* max size of the buffer */
|
|
|
|
off_t b_off; /* current offset in bits inside the buffer */
|
|
|
|
off_t info_offset; /* for logging */
|
|
|
|
vgm_bitstream_t mode; /* read/write modes */
|
|
|
|
} vgm_bitstream;
|
|
|
|
|
|
|
|
int r_bits(vgm_bitstream * ib, int num_bits, uint32_t * value);
|
|
|
|
int w_bits(vgm_bitstream * ob, int num_bits, uint32_t value);
|
|
|
|
|
2017-01-08 01:09:20 +01:00
|
|
|
#endif /*_CODING_H*/
|