├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── example.c ├── example_files ├── alaw.raw ├── pcm.raw └── ulaw.raw ├── g711.c ├── g711.h ├── g711_table.c └── g711_table.h /.gitignore: -------------------------------------------------------------------------------- 1 | example 2 | *.audio 3 | *.o -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/README.md -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/example.c -------------------------------------------------------------------------------- /example_files/alaw.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/example_files/alaw.raw -------------------------------------------------------------------------------- /example_files/pcm.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/example_files/pcm.raw -------------------------------------------------------------------------------- /example_files/ulaw.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/example_files/ulaw.raw -------------------------------------------------------------------------------- /g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/g711.c -------------------------------------------------------------------------------- /g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/g711.h -------------------------------------------------------------------------------- /g711_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/g711_table.c -------------------------------------------------------------------------------- /g711_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/escrichov/G711/HEAD/g711_table.h --------------------------------------------------------------------------------