├── AC_Versions ├── floating-point │ ├── arithmetic_codec.cpp │ └── arithmetic_codec.h ├── int_32_32 │ ├── arithmetic_codec.cpp │ └── arithmetic_codec.h ├── int_32_32_sorted │ ├── arithmetic_codec.cpp │ └── arithmetic_codec.h └── int_32_64 │ ├── arithmetic_codec.cpp │ └── arithmetic_codec.h ├── FastAC.dsw ├── FastAC_Comparisons.pdf ├── FastAC_QA.pdf ├── FastAC_Readme.pdf ├── HPL-2004-76_said_arithmetic_coding.pdf ├── README.md ├── acfile ├── acfile.cpp ├── acfile.dsp └── acfile.plg ├── acwav ├── acwav.cpp ├── acwav.dsp └── acwav.plg ├── arithmetic_codec.cpp ├── arithmetic_codec.h └── test ├── codec_test.cpp ├── test.dsp ├── test.plg ├── test_support.cpp └── test_support.h /AC_Versions/floating-point/arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/floating-point/arithmetic_codec.cpp -------------------------------------------------------------------------------- /AC_Versions/floating-point/arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/floating-point/arithmetic_codec.h -------------------------------------------------------------------------------- /AC_Versions/int_32_32/arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_32/arithmetic_codec.cpp -------------------------------------------------------------------------------- /AC_Versions/int_32_32/arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_32/arithmetic_codec.h -------------------------------------------------------------------------------- /AC_Versions/int_32_32_sorted/arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_32_sorted/arithmetic_codec.cpp -------------------------------------------------------------------------------- /AC_Versions/int_32_32_sorted/arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_32_sorted/arithmetic_codec.h -------------------------------------------------------------------------------- /AC_Versions/int_32_64/arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_64/arithmetic_codec.cpp -------------------------------------------------------------------------------- /AC_Versions/int_32_64/arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/AC_Versions/int_32_64/arithmetic_codec.h -------------------------------------------------------------------------------- /FastAC.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/FastAC.dsw -------------------------------------------------------------------------------- /FastAC_Comparisons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/FastAC_Comparisons.pdf -------------------------------------------------------------------------------- /FastAC_QA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/FastAC_QA.pdf -------------------------------------------------------------------------------- /FastAC_Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/FastAC_Readme.pdf -------------------------------------------------------------------------------- /HPL-2004-76_said_arithmetic_coding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/HPL-2004-76_said_arithmetic_coding.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/README.md -------------------------------------------------------------------------------- /acfile/acfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acfile/acfile.cpp -------------------------------------------------------------------------------- /acfile/acfile.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acfile/acfile.dsp -------------------------------------------------------------------------------- /acfile/acfile.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acfile/acfile.plg -------------------------------------------------------------------------------- /acwav/acwav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acwav/acwav.cpp -------------------------------------------------------------------------------- /acwav/acwav.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acwav/acwav.dsp -------------------------------------------------------------------------------- /acwav/acwav.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/acwav/acwav.plg -------------------------------------------------------------------------------- /arithmetic_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/arithmetic_codec.cpp -------------------------------------------------------------------------------- /arithmetic_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/arithmetic_codec.h -------------------------------------------------------------------------------- /test/codec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/test/codec_test.cpp -------------------------------------------------------------------------------- /test/test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/test/test.dsp -------------------------------------------------------------------------------- /test/test.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/test/test.plg -------------------------------------------------------------------------------- /test/test_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/test/test_support.cpp -------------------------------------------------------------------------------- /test/test_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richgel999/FastAC/HEAD/test/test_support.h --------------------------------------------------------------------------------