gitextract_4euf4kon/ ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── COPYING.LGPLv2.1 ├── Makefile ├── README.md ├── dcacut.c ├── dcadec.c ├── dcadec.pc.in ├── getopt.c ├── getopt.h ├── libdcadec/ │ ├── bitstream.c │ ├── bitstream.h │ ├── common.h │ ├── compiler.h │ ├── core_decoder.c │ ├── core_decoder.h │ ├── core_huffman.h │ ├── core_tables.h │ ├── core_vectors.h │ ├── dca_context.c │ ├── dca_context.h │ ├── dca_frame.c │ ├── dca_frame.h │ ├── dca_stream.c │ ├── dca_stream.h │ ├── dca_waveout.c │ ├── dca_waveout.h │ ├── dmix_tables.c │ ├── dmix_tables.h │ ├── exss_parser.c │ ├── exss_parser.h │ ├── fir_fixed.h │ ├── fir_float.h │ ├── fixed_math.h │ ├── huffman.h │ ├── idct.h │ ├── idct_fixed.c │ ├── idct_float.c │ ├── interpolator.c │ ├── interpolator.h │ ├── interpolator_fixed.c │ ├── interpolator_float.c │ ├── lbr_bitstream.h │ ├── lbr_decoder.c │ ├── lbr_decoder.h │ ├── lbr_huffman.h │ ├── lbr_tables.h │ ├── ta.c │ ├── ta.h │ ├── xll_decoder.c │ ├── xll_decoder.h │ └── xll_tables.h ├── msvc/ │ ├── dcadec/ │ │ ├── dcadec.vcxproj │ │ └── dcadec.vcxproj.filters │ ├── dcadec.sln │ └── libdcadec/ │ ├── libdcadec.vcxproj │ └── libdcadec.vcxproj.filters └── test/ ├── checksum.txt ├── stddev.c ├── stddev.txt └── test.sh