├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Android.bp ├── CMakeLists.txt ├── ChangeLog ├── METADATA ├── MODULE_LICENSE_FRAUNHOFER ├── Makefile.am ├── NOTICE ├── OWNERS ├── PREUPLOAD.cfg ├── aac-enc.c ├── autogen.sh ├── check-archive.sh ├── check-install.sh ├── configure.ac ├── documentation ├── aacDecoder.pdf └── aacEncoder.pdf ├── fdk-aac-config.cmake.in ├── fdk-aac.def ├── fdk-aac.pc.in ├── fdk-aac.sym ├── fuzzer ├── Android.bp ├── README.md ├── aac_dec_fuzzer.cpp └── aac_enc_fuzzer.cpp ├── libAACdec ├── include │ └── aacdecoder_lib.h └── src │ ├── FDK_delay.cpp │ ├── FDK_delay.h │ ├── aac_ram.cpp │ ├── aac_ram.h │ ├── aac_rom.cpp │ ├── aac_rom.h │ ├── aacdec_drc.cpp │ ├── aacdec_drc.h │ ├── aacdec_drc_types.h │ ├── aacdec_hcr.cpp │ ├── aacdec_hcr.h │ ├── aacdec_hcr_bit.cpp │ ├── aacdec_hcr_bit.h │ ├── aacdec_hcr_types.h │ ├── aacdec_hcrs.cpp │ ├── aacdec_hcrs.h │ ├── aacdec_pns.cpp │ ├── aacdec_pns.h │ ├── aacdec_tns.cpp │ ├── aacdec_tns.h │ ├── aacdecoder.cpp │ ├── aacdecoder.h │ ├── aacdecoder_lib.cpp │ ├── arm │ └── block_arm.cpp │ ├── block.cpp │ ├── block.h │ ├── channel.cpp │ ├── channel.h │ ├── channelinfo.cpp │ ├── channelinfo.h │ ├── conceal.cpp │ ├── conceal.h │ ├── conceal_types.h │ ├── ldfiltbank.cpp │ ├── ldfiltbank.h │ ├── overlapadd.h │ ├── pulsedata.cpp │ ├── pulsedata.h │ ├── rvlc.cpp │ ├── rvlc.h │ ├── rvlc_info.h │ ├── rvlcbit.cpp │ ├── rvlcbit.h │ ├── rvlcconceal.cpp │ ├── rvlcconceal.h │ ├── stereo.cpp │ ├── stereo.h │ ├── usacdec_ace_d4t64.cpp │ ├── usacdec_ace_d4t64.h │ ├── usacdec_ace_ltp.cpp │ ├── usacdec_ace_ltp.h │ ├── usacdec_acelp.cpp │ ├── usacdec_acelp.h │ ├── usacdec_const.h │ ├── usacdec_fac.cpp │ ├── usacdec_fac.h │ ├── usacdec_lpc.cpp │ ├── usacdec_lpc.h │ ├── usacdec_lpd.cpp │ ├── usacdec_lpd.h │ ├── usacdec_rom.cpp │ └── usacdec_rom.h ├── libAACenc ├── include │ └── aacenc_lib.h └── src │ ├── aacEnc_ram.cpp │ ├── aacEnc_ram.h │ ├── aacEnc_rom.cpp │ ├── aacEnc_rom.h │ ├── aacenc.cpp │ ├── aacenc.h │ ├── aacenc_lib.cpp │ ├── aacenc_pns.cpp │ ├── aacenc_pns.h │ ├── aacenc_tns.cpp │ ├── aacenc_tns.h │ ├── adj_thr.cpp │ ├── adj_thr.h │ ├── adj_thr_data.h │ ├── band_nrg.cpp │ ├── band_nrg.h │ ├── bandwidth.cpp │ ├── bandwidth.h │ ├── bit_cnt.cpp │ ├── bit_cnt.h │ ├── bitenc.cpp │ ├── bitenc.h │ ├── block_switch.cpp │ ├── block_switch.h │ ├── channel_map.cpp │ ├── channel_map.h │ ├── chaosmeasure.cpp │ ├── chaosmeasure.h │ ├── dyn_bits.cpp │ ├── dyn_bits.h │ ├── grp_data.cpp │ ├── grp_data.h │ ├── intensity.cpp │ ├── intensity.h │ ├── interface.h │ ├── line_pe.cpp │ ├── line_pe.h │ ├── metadata_compressor.cpp │ ├── metadata_compressor.h │ ├── metadata_main.cpp │ ├── metadata_main.h │ ├── mps_main.cpp │ ├── mps_main.h │ ├── ms_stereo.cpp │ ├── ms_stereo.h │ ├── noisedet.cpp │ ├── noisedet.h │ ├── pns_func.h │ ├── pnsparam.cpp │ ├── pnsparam.h │ ├── pre_echo_control.cpp │ ├── pre_echo_control.h │ ├── psy_configuration.cpp │ ├── psy_configuration.h │ ├── psy_const.h │ ├── psy_data.h │ ├── psy_main.cpp │ ├── psy_main.h │ ├── qc_data.h │ ├── qc_main.cpp │ ├── qc_main.h │ ├── quantize.cpp │ ├── quantize.h │ ├── sf_estim.cpp │ ├── sf_estim.h │ ├── spreading.cpp │ ├── spreading.h │ ├── tns_func.h │ ├── tonality.cpp │ ├── tonality.h │ ├── transform.cpp │ └── transform.h ├── libArithCoding ├── include │ └── ac_arith_coder.h └── src │ └── ac_arith_coder.cpp ├── libDRCdec ├── include │ └── FDK_drcDecLib.h └── src │ ├── FDK_drcDecLib.cpp │ ├── drcDec_gainDecoder.cpp │ ├── drcDec_gainDecoder.h │ ├── drcDec_reader.cpp │ ├── drcDec_reader.h │ ├── drcDec_rom.cpp │ ├── drcDec_rom.h │ ├── drcDec_selectionProcess.cpp │ ├── drcDec_selectionProcess.h │ ├── drcDec_tools.cpp │ ├── drcDec_tools.h │ ├── drcDec_types.h │ ├── drcDecoder.h │ ├── drcGainDec_init.cpp │ ├── drcGainDec_init.h │ ├── drcGainDec_preprocess.cpp │ ├── drcGainDec_preprocess.h │ ├── drcGainDec_process.cpp │ └── drcGainDec_process.h ├── libFDK ├── include │ ├── FDK_archdef.h │ ├── FDK_bitbuffer.h │ ├── FDK_bitstream.h │ ├── FDK_core.h │ ├── FDK_crc.h │ ├── FDK_decorrelate.h │ ├── FDK_hybrid.h │ ├── FDK_lpc.h │ ├── FDK_matrixCalloc.h │ ├── FDK_qmf_domain.h │ ├── FDK_tools_rom.h │ ├── FDK_trigFcts.h │ ├── abs.h │ ├── arm │ │ ├── clz_arm.h │ │ ├── cplx_mul_arm.h │ │ ├── fixmadd_arm.h │ │ ├── fixmul_arm.h │ │ ├── scale_arm.h │ │ └── scramble_arm.h │ ├── autocorr2nd.h │ ├── clz.h │ ├── common_fix.h │ ├── cplx_mul.h │ ├── dct.h │ ├── fft.h │ ├── fft_rad2.h │ ├── fixmadd.h │ ├── fixminmax.h │ ├── fixmul.h │ ├── fixpoint_math.h │ ├── huff_nodes.h │ ├── mdct.h │ ├── mips │ │ ├── abs_mips.h │ │ ├── clz_mips.h │ │ ├── cplx_mul_mips.h │ │ ├── fixmul_mips.h │ │ ├── scale_mips.h │ │ └── scramble_mips.h │ ├── nlc_dec.h │ ├── ppc │ │ ├── clz_ppc.h │ │ └── fixmul_ppc.h │ ├── qmf.h │ ├── qmf_pcm.h │ ├── scale.h │ ├── scramble.h │ └── x86 │ │ ├── abs_x86.h │ │ ├── clz_x86.h │ │ ├── fixmul_x86.h │ │ └── fixpoint_math_x86.h └── src │ ├── FDK_bitbuffer.cpp │ ├── FDK_core.cpp │ ├── FDK_crc.cpp │ ├── FDK_decorrelate.cpp │ ├── FDK_hybrid.cpp │ ├── FDK_lpc.cpp │ ├── FDK_matrixCalloc.cpp │ ├── FDK_qmf_domain.cpp │ ├── FDK_tools_rom.cpp │ ├── FDK_trigFcts.cpp │ ├── arm │ ├── fft_rad2_arm.cpp │ └── scale_arm.cpp │ ├── autocorr2nd.cpp │ ├── dct.cpp │ ├── fft.cpp │ ├── fft_rad2.cpp │ ├── fixpoint_math.cpp │ ├── huff_nodes.cpp │ ├── mdct.cpp │ ├── mips │ ├── fft_rad2_mips.cpp │ ├── mips_fft_twiddles.cpp │ └── scale_mips.cpp │ ├── nlc_dec.cpp │ ├── qmf.cpp │ └── scale.cpp ├── libMpegTPDec ├── include │ ├── tp_data.h │ └── tpdec_lib.h └── src │ ├── tp_version.h │ ├── tpdec_adif.cpp │ ├── tpdec_adif.h │ ├── tpdec_adts.cpp │ ├── tpdec_adts.h │ ├── tpdec_asc.cpp │ ├── tpdec_drm.cpp │ ├── tpdec_drm.h │ ├── tpdec_latm.cpp │ ├── tpdec_latm.h │ └── tpdec_lib.cpp ├── libMpegTPEnc ├── include │ ├── tp_data.h │ └── tpenc_lib.h └── src │ ├── tp_version.h │ ├── tpenc_adif.cpp │ ├── tpenc_adif.h │ ├── tpenc_adts.cpp │ ├── tpenc_adts.h │ ├── tpenc_asc.cpp │ ├── tpenc_asc.h │ ├── tpenc_latm.cpp │ ├── tpenc_latm.h │ └── tpenc_lib.cpp ├── libPCMutils ├── include │ ├── limiter.h │ ├── pcm_utils.h │ └── pcmdmx_lib.h └── src │ ├── limiter.cpp │ ├── pcm_utils.cpp │ ├── pcmdmx_lib.cpp │ └── version.h ├── libSACdec ├── include │ ├── sac_dec_errorcodes.h │ └── sac_dec_lib.h └── src │ ├── sac_bitdec.cpp │ ├── sac_bitdec.h │ ├── sac_calcM1andM2.cpp │ ├── sac_calcM1andM2.h │ ├── sac_dec.cpp │ ├── sac_dec.h │ ├── sac_dec_conceal.cpp │ ├── sac_dec_conceal.h │ ├── sac_dec_interface.h │ ├── sac_dec_lib.cpp │ ├── sac_dec_ssc_struct.h │ ├── sac_process.cpp │ ├── sac_process.h │ ├── sac_qmf.cpp │ ├── sac_qmf.h │ ├── sac_reshapeBBEnv.cpp │ ├── sac_reshapeBBEnv.h │ ├── sac_rom.cpp │ ├── sac_rom.h │ ├── sac_smoothing.cpp │ ├── sac_smoothing.h │ ├── sac_stp.cpp │ ├── sac_stp.h │ ├── sac_tsd.cpp │ └── sac_tsd.h ├── libSACenc ├── include │ └── sacenc_lib.h └── src │ ├── sacenc_bitstream.cpp │ ├── sacenc_bitstream.h │ ├── sacenc_const.h │ ├── sacenc_delay.cpp │ ├── sacenc_delay.h │ ├── sacenc_dmx_tdom_enh.cpp │ ├── sacenc_dmx_tdom_enh.h │ ├── sacenc_filter.cpp │ ├── sacenc_filter.h │ ├── sacenc_framewindowing.cpp │ ├── sacenc_framewindowing.h │ ├── sacenc_huff_tab.cpp │ ├── sacenc_huff_tab.h │ ├── sacenc_lib.cpp │ ├── sacenc_nlc_enc.cpp │ ├── sacenc_nlc_enc.h │ ├── sacenc_onsetdetect.cpp │ ├── sacenc_onsetdetect.h │ ├── sacenc_paramextract.cpp │ ├── sacenc_paramextract.h │ ├── sacenc_staticgain.cpp │ ├── sacenc_staticgain.h │ ├── sacenc_tree.cpp │ ├── sacenc_tree.h │ ├── sacenc_vectorfunctions.cpp │ └── sacenc_vectorfunctions.h ├── libSBRdec ├── include │ └── sbrdecoder.h └── src │ ├── HFgen_preFlat.cpp │ ├── HFgen_preFlat.h │ ├── env_calc.cpp │ ├── env_calc.h │ ├── env_dec.cpp │ ├── env_dec.h │ ├── env_extr.cpp │ ├── env_extr.h │ ├── hbe.cpp │ ├── hbe.h │ ├── huff_dec.cpp │ ├── huff_dec.h │ ├── lpp_tran.cpp │ ├── lpp_tran.h │ ├── psbitdec.cpp │ ├── psbitdec.h │ ├── psdec.cpp │ ├── psdec.h │ ├── psdec_drm.cpp │ ├── psdec_drm.h │ ├── psdecrom_drm.cpp │ ├── pvc_dec.cpp │ ├── pvc_dec.h │ ├── sbr_deb.cpp │ ├── sbr_deb.h │ ├── sbr_dec.cpp │ ├── sbr_dec.h │ ├── sbr_ram.cpp │ ├── sbr_ram.h │ ├── sbr_rom.cpp │ ├── sbr_rom.h │ ├── sbrdec_drc.cpp │ ├── sbrdec_drc.h │ ├── sbrdec_freq_sca.cpp │ ├── sbrdec_freq_sca.h │ ├── sbrdecoder.cpp │ └── transcendent.h ├── libSBRenc ├── include │ └── sbr_encoder.h └── src │ ├── bit_sbr.cpp │ ├── bit_sbr.h │ ├── cmondata.h │ ├── code_env.cpp │ ├── code_env.h │ ├── env_bit.cpp │ ├── env_bit.h │ ├── env_est.cpp │ ├── env_est.h │ ├── fram_gen.cpp │ ├── fram_gen.h │ ├── invf_est.cpp │ ├── invf_est.h │ ├── mh_det.cpp │ ├── mh_det.h │ ├── nf_est.cpp │ ├── nf_est.h │ ├── ps_bitenc.cpp │ ├── ps_bitenc.h │ ├── ps_const.h │ ├── ps_encode.cpp │ ├── ps_encode.h │ ├── ps_main.cpp │ ├── ps_main.h │ ├── resampler.cpp │ ├── resampler.h │ ├── sbr.h │ ├── sbr_def.h │ ├── sbr_encoder.cpp │ ├── sbr_misc.cpp │ ├── sbr_misc.h │ ├── sbrenc_freq_sca.cpp │ ├── sbrenc_freq_sca.h │ ├── sbrenc_ram.cpp │ ├── sbrenc_ram.h │ ├── sbrenc_rom.cpp │ ├── sbrenc_rom.h │ ├── ton_corr.cpp │ ├── ton_corr.h │ ├── tran_det.cpp │ └── tran_det.h ├── libSYS ├── include │ ├── FDK_audio.h │ ├── genericStds.h │ ├── machine_type.h │ └── syslib_channelMapDescr.h └── src │ ├── genericStds.cpp │ └── syslib_channelMapDescr.cpp ├── m4 └── .gitkeep ├── sha1.c ├── sha1.h ├── test-encode-decode.c ├── test ├── ref-mono.txt ├── ref-stereo.txt └── run-test.sh ├── tests ├── AacDecBenchmark │ ├── AacDecBenchmark.cpp │ ├── Android.bp │ ├── AndroidTest.xml │ ├── DynamicConfig.xml │ └── README.md └── AacEncBenchmark │ ├── AacEncBenchmark.cpp │ ├── Android.bp │ ├── AndroidTest.xml │ ├── DynamicConfig.xml │ └── README.md ├── wavreader.c ├── wavreader.h └── win32 └── getopt.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/Android.bp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/ChangeLog -------------------------------------------------------------------------------- /METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/METADATA -------------------------------------------------------------------------------- /MODULE_LICENSE_FRAUNHOFER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/Makefile.am -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | jmtrivi@google.com 2 | include platform/system/core:/janitors/OWNERS #{LAST_RESORT_SUGGESTION} 3 | -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/PREUPLOAD.cfg -------------------------------------------------------------------------------- /aac-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/aac-enc.c -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -fiv 3 | -------------------------------------------------------------------------------- /check-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/check-archive.sh -------------------------------------------------------------------------------- /check-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/check-install.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/aacDecoder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/documentation/aacDecoder.pdf -------------------------------------------------------------------------------- /documentation/aacEncoder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/documentation/aacEncoder.pdf -------------------------------------------------------------------------------- /fdk-aac-config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(${CMAKE_CURRENT_LIST_DIR}/fdk-aac-targets.cmake) 4 | 5 | check_required_components(FDK-AAC) 6 | -------------------------------------------------------------------------------- /fdk-aac.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fdk-aac.def -------------------------------------------------------------------------------- /fdk-aac.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fdk-aac.pc.in -------------------------------------------------------------------------------- /fdk-aac.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fdk-aac.sym -------------------------------------------------------------------------------- /fuzzer/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fuzzer/Android.bp -------------------------------------------------------------------------------- /fuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fuzzer/README.md -------------------------------------------------------------------------------- /fuzzer/aac_dec_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fuzzer/aac_dec_fuzzer.cpp -------------------------------------------------------------------------------- /fuzzer/aac_enc_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/fuzzer/aac_enc_fuzzer.cpp -------------------------------------------------------------------------------- /libAACdec/include/aacdecoder_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/include/aacdecoder_lib.h -------------------------------------------------------------------------------- /libAACdec/src/FDK_delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/FDK_delay.cpp -------------------------------------------------------------------------------- /libAACdec/src/FDK_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/FDK_delay.h -------------------------------------------------------------------------------- /libAACdec/src/aac_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aac_ram.cpp -------------------------------------------------------------------------------- /libAACdec/src/aac_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aac_ram.h -------------------------------------------------------------------------------- /libAACdec/src/aac_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aac_rom.cpp -------------------------------------------------------------------------------- /libAACdec/src/aac_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aac_rom.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_drc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_drc.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_drc.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_drc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_drc_types.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcr.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcr.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcr_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcr_bit.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcr_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcr_bit.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcr_types.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcrs.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_hcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_hcrs.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_pns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_pns.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_pns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_pns.h -------------------------------------------------------------------------------- /libAACdec/src/aacdec_tns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_tns.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdec_tns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdec_tns.h -------------------------------------------------------------------------------- /libAACdec/src/aacdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdecoder.cpp -------------------------------------------------------------------------------- /libAACdec/src/aacdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdecoder.h -------------------------------------------------------------------------------- /libAACdec/src/aacdecoder_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/aacdecoder_lib.cpp -------------------------------------------------------------------------------- /libAACdec/src/arm/block_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/arm/block_arm.cpp -------------------------------------------------------------------------------- /libAACdec/src/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/block.cpp -------------------------------------------------------------------------------- /libAACdec/src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/block.h -------------------------------------------------------------------------------- /libAACdec/src/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/channel.cpp -------------------------------------------------------------------------------- /libAACdec/src/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/channel.h -------------------------------------------------------------------------------- /libAACdec/src/channelinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/channelinfo.cpp -------------------------------------------------------------------------------- /libAACdec/src/channelinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/channelinfo.h -------------------------------------------------------------------------------- /libAACdec/src/conceal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/conceal.cpp -------------------------------------------------------------------------------- /libAACdec/src/conceal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/conceal.h -------------------------------------------------------------------------------- /libAACdec/src/conceal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/conceal_types.h -------------------------------------------------------------------------------- /libAACdec/src/ldfiltbank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/ldfiltbank.cpp -------------------------------------------------------------------------------- /libAACdec/src/ldfiltbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/ldfiltbank.h -------------------------------------------------------------------------------- /libAACdec/src/overlapadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/overlapadd.h -------------------------------------------------------------------------------- /libAACdec/src/pulsedata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/pulsedata.cpp -------------------------------------------------------------------------------- /libAACdec/src/pulsedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/pulsedata.h -------------------------------------------------------------------------------- /libAACdec/src/rvlc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlc.cpp -------------------------------------------------------------------------------- /libAACdec/src/rvlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlc.h -------------------------------------------------------------------------------- /libAACdec/src/rvlc_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlc_info.h -------------------------------------------------------------------------------- /libAACdec/src/rvlcbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlcbit.cpp -------------------------------------------------------------------------------- /libAACdec/src/rvlcbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlcbit.h -------------------------------------------------------------------------------- /libAACdec/src/rvlcconceal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlcconceal.cpp -------------------------------------------------------------------------------- /libAACdec/src/rvlcconceal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/rvlcconceal.h -------------------------------------------------------------------------------- /libAACdec/src/stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/stereo.cpp -------------------------------------------------------------------------------- /libAACdec/src/stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/stereo.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_ace_d4t64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_ace_d4t64.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_ace_d4t64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_ace_d4t64.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_ace_ltp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_ace_ltp.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_ace_ltp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_ace_ltp.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_acelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_acelp.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_acelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_acelp.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_const.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_fac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_fac.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_fac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_fac.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_lpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_lpc.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_lpc.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_lpd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_lpd.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_lpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_lpd.h -------------------------------------------------------------------------------- /libAACdec/src/usacdec_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_rom.cpp -------------------------------------------------------------------------------- /libAACdec/src/usacdec_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACdec/src/usacdec_rom.h -------------------------------------------------------------------------------- /libAACenc/include/aacenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/include/aacenc_lib.h -------------------------------------------------------------------------------- /libAACenc/src/aacEnc_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacEnc_ram.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacEnc_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacEnc_ram.h -------------------------------------------------------------------------------- /libAACenc/src/aacEnc_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacEnc_rom.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacEnc_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacEnc_rom.h -------------------------------------------------------------------------------- /libAACenc/src/aacenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc.h -------------------------------------------------------------------------------- /libAACenc/src/aacenc_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc_lib.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacenc_pns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc_pns.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacenc_pns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc_pns.h -------------------------------------------------------------------------------- /libAACenc/src/aacenc_tns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc_tns.cpp -------------------------------------------------------------------------------- /libAACenc/src/aacenc_tns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/aacenc_tns.h -------------------------------------------------------------------------------- /libAACenc/src/adj_thr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/adj_thr.cpp -------------------------------------------------------------------------------- /libAACenc/src/adj_thr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/adj_thr.h -------------------------------------------------------------------------------- /libAACenc/src/adj_thr_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/adj_thr_data.h -------------------------------------------------------------------------------- /libAACenc/src/band_nrg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/band_nrg.cpp -------------------------------------------------------------------------------- /libAACenc/src/band_nrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/band_nrg.h -------------------------------------------------------------------------------- /libAACenc/src/bandwidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bandwidth.cpp -------------------------------------------------------------------------------- /libAACenc/src/bandwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bandwidth.h -------------------------------------------------------------------------------- /libAACenc/src/bit_cnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bit_cnt.cpp -------------------------------------------------------------------------------- /libAACenc/src/bit_cnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bit_cnt.h -------------------------------------------------------------------------------- /libAACenc/src/bitenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bitenc.cpp -------------------------------------------------------------------------------- /libAACenc/src/bitenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/bitenc.h -------------------------------------------------------------------------------- /libAACenc/src/block_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/block_switch.cpp -------------------------------------------------------------------------------- /libAACenc/src/block_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/block_switch.h -------------------------------------------------------------------------------- /libAACenc/src/channel_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/channel_map.cpp -------------------------------------------------------------------------------- /libAACenc/src/channel_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/channel_map.h -------------------------------------------------------------------------------- /libAACenc/src/chaosmeasure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/chaosmeasure.cpp -------------------------------------------------------------------------------- /libAACenc/src/chaosmeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/chaosmeasure.h -------------------------------------------------------------------------------- /libAACenc/src/dyn_bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/dyn_bits.cpp -------------------------------------------------------------------------------- /libAACenc/src/dyn_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/dyn_bits.h -------------------------------------------------------------------------------- /libAACenc/src/grp_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/grp_data.cpp -------------------------------------------------------------------------------- /libAACenc/src/grp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/grp_data.h -------------------------------------------------------------------------------- /libAACenc/src/intensity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/intensity.cpp -------------------------------------------------------------------------------- /libAACenc/src/intensity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/intensity.h -------------------------------------------------------------------------------- /libAACenc/src/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/interface.h -------------------------------------------------------------------------------- /libAACenc/src/line_pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/line_pe.cpp -------------------------------------------------------------------------------- /libAACenc/src/line_pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/line_pe.h -------------------------------------------------------------------------------- /libAACenc/src/metadata_compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/metadata_compressor.cpp -------------------------------------------------------------------------------- /libAACenc/src/metadata_compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/metadata_compressor.h -------------------------------------------------------------------------------- /libAACenc/src/metadata_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/metadata_main.cpp -------------------------------------------------------------------------------- /libAACenc/src/metadata_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/metadata_main.h -------------------------------------------------------------------------------- /libAACenc/src/mps_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/mps_main.cpp -------------------------------------------------------------------------------- /libAACenc/src/mps_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/mps_main.h -------------------------------------------------------------------------------- /libAACenc/src/ms_stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/ms_stereo.cpp -------------------------------------------------------------------------------- /libAACenc/src/ms_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/ms_stereo.h -------------------------------------------------------------------------------- /libAACenc/src/noisedet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/noisedet.cpp -------------------------------------------------------------------------------- /libAACenc/src/noisedet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/noisedet.h -------------------------------------------------------------------------------- /libAACenc/src/pns_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/pns_func.h -------------------------------------------------------------------------------- /libAACenc/src/pnsparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/pnsparam.cpp -------------------------------------------------------------------------------- /libAACenc/src/pnsparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/pnsparam.h -------------------------------------------------------------------------------- /libAACenc/src/pre_echo_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/pre_echo_control.cpp -------------------------------------------------------------------------------- /libAACenc/src/pre_echo_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/pre_echo_control.h -------------------------------------------------------------------------------- /libAACenc/src/psy_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_configuration.cpp -------------------------------------------------------------------------------- /libAACenc/src/psy_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_configuration.h -------------------------------------------------------------------------------- /libAACenc/src/psy_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_const.h -------------------------------------------------------------------------------- /libAACenc/src/psy_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_data.h -------------------------------------------------------------------------------- /libAACenc/src/psy_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_main.cpp -------------------------------------------------------------------------------- /libAACenc/src/psy_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/psy_main.h -------------------------------------------------------------------------------- /libAACenc/src/qc_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/qc_data.h -------------------------------------------------------------------------------- /libAACenc/src/qc_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/qc_main.cpp -------------------------------------------------------------------------------- /libAACenc/src/qc_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/qc_main.h -------------------------------------------------------------------------------- /libAACenc/src/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/quantize.cpp -------------------------------------------------------------------------------- /libAACenc/src/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/quantize.h -------------------------------------------------------------------------------- /libAACenc/src/sf_estim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/sf_estim.cpp -------------------------------------------------------------------------------- /libAACenc/src/sf_estim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/sf_estim.h -------------------------------------------------------------------------------- /libAACenc/src/spreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/spreading.cpp -------------------------------------------------------------------------------- /libAACenc/src/spreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/spreading.h -------------------------------------------------------------------------------- /libAACenc/src/tns_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/tns_func.h -------------------------------------------------------------------------------- /libAACenc/src/tonality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/tonality.cpp -------------------------------------------------------------------------------- /libAACenc/src/tonality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/tonality.h -------------------------------------------------------------------------------- /libAACenc/src/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/transform.cpp -------------------------------------------------------------------------------- /libAACenc/src/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libAACenc/src/transform.h -------------------------------------------------------------------------------- /libArithCoding/include/ac_arith_coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libArithCoding/include/ac_arith_coder.h -------------------------------------------------------------------------------- /libArithCoding/src/ac_arith_coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libArithCoding/src/ac_arith_coder.cpp -------------------------------------------------------------------------------- /libDRCdec/include/FDK_drcDecLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/include/FDK_drcDecLib.h -------------------------------------------------------------------------------- /libDRCdec/src/FDK_drcDecLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/FDK_drcDecLib.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_gainDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_gainDecoder.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_gainDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_gainDecoder.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_reader.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_reader.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_rom.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_rom.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_selectionProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_selectionProcess.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_selectionProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_selectionProcess.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_tools.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_tools.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDec_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDec_types.h -------------------------------------------------------------------------------- /libDRCdec/src/drcDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcDecoder.h -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_init.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_init.h -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_preprocess.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_preprocess.h -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_process.cpp -------------------------------------------------------------------------------- /libDRCdec/src/drcGainDec_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libDRCdec/src/drcGainDec_process.h -------------------------------------------------------------------------------- /libFDK/include/FDK_archdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_archdef.h -------------------------------------------------------------------------------- /libFDK/include/FDK_bitbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_bitbuffer.h -------------------------------------------------------------------------------- /libFDK/include/FDK_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_bitstream.h -------------------------------------------------------------------------------- /libFDK/include/FDK_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_core.h -------------------------------------------------------------------------------- /libFDK/include/FDK_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_crc.h -------------------------------------------------------------------------------- /libFDK/include/FDK_decorrelate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_decorrelate.h -------------------------------------------------------------------------------- /libFDK/include/FDK_hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_hybrid.h -------------------------------------------------------------------------------- /libFDK/include/FDK_lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_lpc.h -------------------------------------------------------------------------------- /libFDK/include/FDK_matrixCalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_matrixCalloc.h -------------------------------------------------------------------------------- /libFDK/include/FDK_qmf_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_qmf_domain.h -------------------------------------------------------------------------------- /libFDK/include/FDK_tools_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_tools_rom.h -------------------------------------------------------------------------------- /libFDK/include/FDK_trigFcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/FDK_trigFcts.h -------------------------------------------------------------------------------- /libFDK/include/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/abs.h -------------------------------------------------------------------------------- /libFDK/include/arm/clz_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/clz_arm.h -------------------------------------------------------------------------------- /libFDK/include/arm/cplx_mul_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/cplx_mul_arm.h -------------------------------------------------------------------------------- /libFDK/include/arm/fixmadd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/fixmadd_arm.h -------------------------------------------------------------------------------- /libFDK/include/arm/fixmul_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/fixmul_arm.h -------------------------------------------------------------------------------- /libFDK/include/arm/scale_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/scale_arm.h -------------------------------------------------------------------------------- /libFDK/include/arm/scramble_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/arm/scramble_arm.h -------------------------------------------------------------------------------- /libFDK/include/autocorr2nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/autocorr2nd.h -------------------------------------------------------------------------------- /libFDK/include/clz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/clz.h -------------------------------------------------------------------------------- /libFDK/include/common_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/common_fix.h -------------------------------------------------------------------------------- /libFDK/include/cplx_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/cplx_mul.h -------------------------------------------------------------------------------- /libFDK/include/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/dct.h -------------------------------------------------------------------------------- /libFDK/include/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fft.h -------------------------------------------------------------------------------- /libFDK/include/fft_rad2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fft_rad2.h -------------------------------------------------------------------------------- /libFDK/include/fixmadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fixmadd.h -------------------------------------------------------------------------------- /libFDK/include/fixminmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fixminmax.h -------------------------------------------------------------------------------- /libFDK/include/fixmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fixmul.h -------------------------------------------------------------------------------- /libFDK/include/fixpoint_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/fixpoint_math.h -------------------------------------------------------------------------------- /libFDK/include/huff_nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/huff_nodes.h -------------------------------------------------------------------------------- /libFDK/include/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mdct.h -------------------------------------------------------------------------------- /libFDK/include/mips/abs_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/abs_mips.h -------------------------------------------------------------------------------- /libFDK/include/mips/clz_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/clz_mips.h -------------------------------------------------------------------------------- /libFDK/include/mips/cplx_mul_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/cplx_mul_mips.h -------------------------------------------------------------------------------- /libFDK/include/mips/fixmul_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/fixmul_mips.h -------------------------------------------------------------------------------- /libFDK/include/mips/scale_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/scale_mips.h -------------------------------------------------------------------------------- /libFDK/include/mips/scramble_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/mips/scramble_mips.h -------------------------------------------------------------------------------- /libFDK/include/nlc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/nlc_dec.h -------------------------------------------------------------------------------- /libFDK/include/ppc/clz_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/ppc/clz_ppc.h -------------------------------------------------------------------------------- /libFDK/include/ppc/fixmul_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/ppc/fixmul_ppc.h -------------------------------------------------------------------------------- /libFDK/include/qmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/qmf.h -------------------------------------------------------------------------------- /libFDK/include/qmf_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/qmf_pcm.h -------------------------------------------------------------------------------- /libFDK/include/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/scale.h -------------------------------------------------------------------------------- /libFDK/include/scramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/scramble.h -------------------------------------------------------------------------------- /libFDK/include/x86/abs_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/x86/abs_x86.h -------------------------------------------------------------------------------- /libFDK/include/x86/clz_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/x86/clz_x86.h -------------------------------------------------------------------------------- /libFDK/include/x86/fixmul_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/x86/fixmul_x86.h -------------------------------------------------------------------------------- /libFDK/include/x86/fixpoint_math_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/include/x86/fixpoint_math_x86.h -------------------------------------------------------------------------------- /libFDK/src/FDK_bitbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_bitbuffer.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_core.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_crc.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_decorrelate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_decorrelate.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_hybrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_hybrid.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_lpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_lpc.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_matrixCalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_matrixCalloc.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_qmf_domain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_qmf_domain.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_tools_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_tools_rom.cpp -------------------------------------------------------------------------------- /libFDK/src/FDK_trigFcts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/FDK_trigFcts.cpp -------------------------------------------------------------------------------- /libFDK/src/arm/fft_rad2_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/arm/fft_rad2_arm.cpp -------------------------------------------------------------------------------- /libFDK/src/arm/scale_arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/arm/scale_arm.cpp -------------------------------------------------------------------------------- /libFDK/src/autocorr2nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/autocorr2nd.cpp -------------------------------------------------------------------------------- /libFDK/src/dct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/dct.cpp -------------------------------------------------------------------------------- /libFDK/src/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/fft.cpp -------------------------------------------------------------------------------- /libFDK/src/fft_rad2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/fft_rad2.cpp -------------------------------------------------------------------------------- /libFDK/src/fixpoint_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/fixpoint_math.cpp -------------------------------------------------------------------------------- /libFDK/src/huff_nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/huff_nodes.cpp -------------------------------------------------------------------------------- /libFDK/src/mdct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/mdct.cpp -------------------------------------------------------------------------------- /libFDK/src/mips/fft_rad2_mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/mips/fft_rad2_mips.cpp -------------------------------------------------------------------------------- /libFDK/src/mips/mips_fft_twiddles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/mips/mips_fft_twiddles.cpp -------------------------------------------------------------------------------- /libFDK/src/mips/scale_mips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/mips/scale_mips.cpp -------------------------------------------------------------------------------- /libFDK/src/nlc_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/nlc_dec.cpp -------------------------------------------------------------------------------- /libFDK/src/qmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/qmf.cpp -------------------------------------------------------------------------------- /libFDK/src/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libFDK/src/scale.cpp -------------------------------------------------------------------------------- /libMpegTPDec/include/tp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/include/tp_data.h -------------------------------------------------------------------------------- /libMpegTPDec/include/tpdec_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/include/tpdec_lib.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tp_version.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_adif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_adif.cpp -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_adif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_adif.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_adts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_adts.cpp -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_adts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_adts.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_asc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_asc.cpp -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_drm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_drm.cpp -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_drm.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_latm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_latm.cpp -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_latm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_latm.h -------------------------------------------------------------------------------- /libMpegTPDec/src/tpdec_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPDec/src/tpdec_lib.cpp -------------------------------------------------------------------------------- /libMpegTPEnc/include/tp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/include/tp_data.h -------------------------------------------------------------------------------- /libMpegTPEnc/include/tpenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/include/tpenc_lib.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tp_version.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_adif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_adif.cpp -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_adif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_adif.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_adts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_adts.cpp -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_adts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_adts.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_asc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_asc.cpp -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_asc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_asc.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_latm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_latm.cpp -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_latm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_latm.h -------------------------------------------------------------------------------- /libMpegTPEnc/src/tpenc_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libMpegTPEnc/src/tpenc_lib.cpp -------------------------------------------------------------------------------- /libPCMutils/include/limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/include/limiter.h -------------------------------------------------------------------------------- /libPCMutils/include/pcm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/include/pcm_utils.h -------------------------------------------------------------------------------- /libPCMutils/include/pcmdmx_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/include/pcmdmx_lib.h -------------------------------------------------------------------------------- /libPCMutils/src/limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/src/limiter.cpp -------------------------------------------------------------------------------- /libPCMutils/src/pcm_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/src/pcm_utils.cpp -------------------------------------------------------------------------------- /libPCMutils/src/pcmdmx_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/src/pcmdmx_lib.cpp -------------------------------------------------------------------------------- /libPCMutils/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libPCMutils/src/version.h -------------------------------------------------------------------------------- /libSACdec/include/sac_dec_errorcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/include/sac_dec_errorcodes.h -------------------------------------------------------------------------------- /libSACdec/include/sac_dec_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/include/sac_dec_lib.h -------------------------------------------------------------------------------- /libSACdec/src/sac_bitdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_bitdec.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_bitdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_bitdec.h -------------------------------------------------------------------------------- /libSACdec/src/sac_calcM1andM2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_calcM1andM2.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_calcM1andM2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_calcM1andM2.h -------------------------------------------------------------------------------- /libSACdec/src/sac_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec.h -------------------------------------------------------------------------------- /libSACdec/src/sac_dec_conceal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec_conceal.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_dec_conceal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec_conceal.h -------------------------------------------------------------------------------- /libSACdec/src/sac_dec_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec_interface.h -------------------------------------------------------------------------------- /libSACdec/src/sac_dec_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec_lib.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_dec_ssc_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_dec_ssc_struct.h -------------------------------------------------------------------------------- /libSACdec/src/sac_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_process.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_process.h -------------------------------------------------------------------------------- /libSACdec/src/sac_qmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_qmf.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_qmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_qmf.h -------------------------------------------------------------------------------- /libSACdec/src/sac_reshapeBBEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_reshapeBBEnv.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_reshapeBBEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_reshapeBBEnv.h -------------------------------------------------------------------------------- /libSACdec/src/sac_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_rom.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_rom.h -------------------------------------------------------------------------------- /libSACdec/src/sac_smoothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_smoothing.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_smoothing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_smoothing.h -------------------------------------------------------------------------------- /libSACdec/src/sac_stp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_stp.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_stp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_stp.h -------------------------------------------------------------------------------- /libSACdec/src/sac_tsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_tsd.cpp -------------------------------------------------------------------------------- /libSACdec/src/sac_tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACdec/src/sac_tsd.h -------------------------------------------------------------------------------- /libSACenc/include/sacenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/include/sacenc_lib.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_bitstream.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_bitstream.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_const.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_delay.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_delay.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_dmx_tdom_enh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_dmx_tdom_enh.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_dmx_tdom_enh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_dmx_tdom_enh.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_filter.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_filter.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_framewindowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_framewindowing.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_framewindowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_framewindowing.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_huff_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_huff_tab.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_huff_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_huff_tab.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_lib.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_nlc_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_nlc_enc.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_nlc_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_nlc_enc.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_onsetdetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_onsetdetect.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_onsetdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_onsetdetect.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_paramextract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_paramextract.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_paramextract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_paramextract.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_staticgain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_staticgain.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_staticgain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_staticgain.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_tree.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_tree.h -------------------------------------------------------------------------------- /libSACenc/src/sacenc_vectorfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_vectorfunctions.cpp -------------------------------------------------------------------------------- /libSACenc/src/sacenc_vectorfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSACenc/src/sacenc_vectorfunctions.h -------------------------------------------------------------------------------- /libSBRdec/include/sbrdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/include/sbrdecoder.h -------------------------------------------------------------------------------- /libSBRdec/src/HFgen_preFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/HFgen_preFlat.cpp -------------------------------------------------------------------------------- /libSBRdec/src/HFgen_preFlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/HFgen_preFlat.h -------------------------------------------------------------------------------- /libSBRdec/src/env_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_calc.cpp -------------------------------------------------------------------------------- /libSBRdec/src/env_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_calc.h -------------------------------------------------------------------------------- /libSBRdec/src/env_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_dec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/env_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_dec.h -------------------------------------------------------------------------------- /libSBRdec/src/env_extr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_extr.cpp -------------------------------------------------------------------------------- /libSBRdec/src/env_extr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/env_extr.h -------------------------------------------------------------------------------- /libSBRdec/src/hbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/hbe.cpp -------------------------------------------------------------------------------- /libSBRdec/src/hbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/hbe.h -------------------------------------------------------------------------------- /libSBRdec/src/huff_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/huff_dec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/huff_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/huff_dec.h -------------------------------------------------------------------------------- /libSBRdec/src/lpp_tran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/lpp_tran.cpp -------------------------------------------------------------------------------- /libSBRdec/src/lpp_tran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/lpp_tran.h -------------------------------------------------------------------------------- /libSBRdec/src/psbitdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psbitdec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/psbitdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psbitdec.h -------------------------------------------------------------------------------- /libSBRdec/src/psdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psdec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/psdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psdec.h -------------------------------------------------------------------------------- /libSBRdec/src/psdec_drm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psdec_drm.cpp -------------------------------------------------------------------------------- /libSBRdec/src/psdec_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psdec_drm.h -------------------------------------------------------------------------------- /libSBRdec/src/psdecrom_drm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/psdecrom_drm.cpp -------------------------------------------------------------------------------- /libSBRdec/src/pvc_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/pvc_dec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/pvc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/pvc_dec.h -------------------------------------------------------------------------------- /libSBRdec/src/sbr_deb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_deb.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbr_deb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_deb.h -------------------------------------------------------------------------------- /libSBRdec/src/sbr_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_dec.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbr_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_dec.h -------------------------------------------------------------------------------- /libSBRdec/src/sbr_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_ram.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbr_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_ram.h -------------------------------------------------------------------------------- /libSBRdec/src/sbr_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_rom.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbr_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbr_rom.h -------------------------------------------------------------------------------- /libSBRdec/src/sbrdec_drc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbrdec_drc.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbrdec_drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbrdec_drc.h -------------------------------------------------------------------------------- /libSBRdec/src/sbrdec_freq_sca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbrdec_freq_sca.cpp -------------------------------------------------------------------------------- /libSBRdec/src/sbrdec_freq_sca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbrdec_freq_sca.h -------------------------------------------------------------------------------- /libSBRdec/src/sbrdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/sbrdecoder.cpp -------------------------------------------------------------------------------- /libSBRdec/src/transcendent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRdec/src/transcendent.h -------------------------------------------------------------------------------- /libSBRenc/include/sbr_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/include/sbr_encoder.h -------------------------------------------------------------------------------- /libSBRenc/src/bit_sbr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/bit_sbr.cpp -------------------------------------------------------------------------------- /libSBRenc/src/bit_sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/bit_sbr.h -------------------------------------------------------------------------------- /libSBRenc/src/cmondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/cmondata.h -------------------------------------------------------------------------------- /libSBRenc/src/code_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/code_env.cpp -------------------------------------------------------------------------------- /libSBRenc/src/code_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/code_env.h -------------------------------------------------------------------------------- /libSBRenc/src/env_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/env_bit.cpp -------------------------------------------------------------------------------- /libSBRenc/src/env_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/env_bit.h -------------------------------------------------------------------------------- /libSBRenc/src/env_est.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/env_est.cpp -------------------------------------------------------------------------------- /libSBRenc/src/env_est.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/env_est.h -------------------------------------------------------------------------------- /libSBRenc/src/fram_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/fram_gen.cpp -------------------------------------------------------------------------------- /libSBRenc/src/fram_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/fram_gen.h -------------------------------------------------------------------------------- /libSBRenc/src/invf_est.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/invf_est.cpp -------------------------------------------------------------------------------- /libSBRenc/src/invf_est.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/invf_est.h -------------------------------------------------------------------------------- /libSBRenc/src/mh_det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/mh_det.cpp -------------------------------------------------------------------------------- /libSBRenc/src/mh_det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/mh_det.h -------------------------------------------------------------------------------- /libSBRenc/src/nf_est.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/nf_est.cpp -------------------------------------------------------------------------------- /libSBRenc/src/nf_est.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/nf_est.h -------------------------------------------------------------------------------- /libSBRenc/src/ps_bitenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_bitenc.cpp -------------------------------------------------------------------------------- /libSBRenc/src/ps_bitenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_bitenc.h -------------------------------------------------------------------------------- /libSBRenc/src/ps_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_const.h -------------------------------------------------------------------------------- /libSBRenc/src/ps_encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_encode.cpp -------------------------------------------------------------------------------- /libSBRenc/src/ps_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_encode.h -------------------------------------------------------------------------------- /libSBRenc/src/ps_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_main.cpp -------------------------------------------------------------------------------- /libSBRenc/src/ps_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ps_main.h -------------------------------------------------------------------------------- /libSBRenc/src/resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/resampler.cpp -------------------------------------------------------------------------------- /libSBRenc/src/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/resampler.h -------------------------------------------------------------------------------- /libSBRenc/src/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbr.h -------------------------------------------------------------------------------- /libSBRenc/src/sbr_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbr_def.h -------------------------------------------------------------------------------- /libSBRenc/src/sbr_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbr_encoder.cpp -------------------------------------------------------------------------------- /libSBRenc/src/sbr_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbr_misc.cpp -------------------------------------------------------------------------------- /libSBRenc/src/sbr_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbr_misc.h -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_freq_sca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_freq_sca.cpp -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_freq_sca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_freq_sca.h -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_ram.cpp -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_ram.h -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_rom.cpp -------------------------------------------------------------------------------- /libSBRenc/src/sbrenc_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/sbrenc_rom.h -------------------------------------------------------------------------------- /libSBRenc/src/ton_corr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ton_corr.cpp -------------------------------------------------------------------------------- /libSBRenc/src/ton_corr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/ton_corr.h -------------------------------------------------------------------------------- /libSBRenc/src/tran_det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/tran_det.cpp -------------------------------------------------------------------------------- /libSBRenc/src/tran_det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSBRenc/src/tran_det.h -------------------------------------------------------------------------------- /libSYS/include/FDK_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/include/FDK_audio.h -------------------------------------------------------------------------------- /libSYS/include/genericStds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/include/genericStds.h -------------------------------------------------------------------------------- /libSYS/include/machine_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/include/machine_type.h -------------------------------------------------------------------------------- /libSYS/include/syslib_channelMapDescr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/include/syslib_channelMapDescr.h -------------------------------------------------------------------------------- /libSYS/src/genericStds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/src/genericStds.cpp -------------------------------------------------------------------------------- /libSYS/src/syslib_channelMapDescr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/libSYS/src/syslib_channelMapDescr.cpp -------------------------------------------------------------------------------- /m4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/sha1.c -------------------------------------------------------------------------------- /sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/sha1.h -------------------------------------------------------------------------------- /test-encode-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/test-encode-decode.c -------------------------------------------------------------------------------- /test/ref-mono.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/test/ref-mono.txt -------------------------------------------------------------------------------- /test/ref-stereo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/test/ref-stereo.txt -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /tests/AacDecBenchmark/AacDecBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacDecBenchmark/AacDecBenchmark.cpp -------------------------------------------------------------------------------- /tests/AacDecBenchmark/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacDecBenchmark/Android.bp -------------------------------------------------------------------------------- /tests/AacDecBenchmark/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacDecBenchmark/AndroidTest.xml -------------------------------------------------------------------------------- /tests/AacDecBenchmark/DynamicConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacDecBenchmark/DynamicConfig.xml -------------------------------------------------------------------------------- /tests/AacDecBenchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacDecBenchmark/README.md -------------------------------------------------------------------------------- /tests/AacEncBenchmark/AacEncBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacEncBenchmark/AacEncBenchmark.cpp -------------------------------------------------------------------------------- /tests/AacEncBenchmark/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacEncBenchmark/Android.bp -------------------------------------------------------------------------------- /tests/AacEncBenchmark/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacEncBenchmark/AndroidTest.xml -------------------------------------------------------------------------------- /tests/AacEncBenchmark/DynamicConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacEncBenchmark/DynamicConfig.xml -------------------------------------------------------------------------------- /tests/AacEncBenchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/tests/AacEncBenchmark/README.md -------------------------------------------------------------------------------- /wavreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/wavreader.c -------------------------------------------------------------------------------- /wavreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/wavreader.h -------------------------------------------------------------------------------- /win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstorsjo/fdk-aac/HEAD/win32/getopt.h --------------------------------------------------------------------------------