├── LICENSE ├── Makefile ├── README.md ├── base.h ├── bitstream.cpp ├── bitstream.h ├── cabac.cpp ├── cabac.h ├── math.h ├── memory.cpp ├── memory.h ├── test.cpp └── version.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/README.md -------------------------------------------------------------------------------- /base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/base.h -------------------------------------------------------------------------------- /bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/bitstream.cpp -------------------------------------------------------------------------------- /bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/bitstream.h -------------------------------------------------------------------------------- /cabac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/cabac.cpp -------------------------------------------------------------------------------- /cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/cabac.h -------------------------------------------------------------------------------- /math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/math.h -------------------------------------------------------------------------------- /memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/memory.cpp -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/memory.h -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/test.cpp -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramenhut/abac/HEAD/version.h --------------------------------------------------------------------------------