├── .github └── workflows │ └── build.yml ├── LICENSE ├── Makefile ├── README.md ├── bittester.c ├── optimalfinder.c ├── probabilitytree.h └── vpxcoding.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/README.md -------------------------------------------------------------------------------- /bittester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/bittester.c -------------------------------------------------------------------------------- /optimalfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/optimalfinder.c -------------------------------------------------------------------------------- /probabilitytree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/probabilitytree.h -------------------------------------------------------------------------------- /vpxcoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/vpxcoding/HEAD/vpxcoding.h --------------------------------------------------------------------------------