From f4c9c890ab80a3e6de37ba245244d0e69d9c542c Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Sun, 17 Feb 2019 21:26:36 -0500 Subject: try using opus --- opus_test.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 opus_test.c (limited to 'opus_test.c') diff --git a/opus_test.c b/opus_test.c new file mode 100644 index 0000000..96744cb --- /dev/null +++ b/opus_test.c @@ -0,0 +1,17 @@ +#include +#include +#include + +int main(void) { + int err; + OpusEncoder* enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_AUDIO, &err); + + if (err != NULL) { + puts("initializing opus"); + return EXIT_FAILURE; + } + + + + return EXIT_SUCCESS; +} \ No newline at end of file -- cgit v1.3.1