aboutsummaryrefslogtreecommitdiff
path: root/opus_test.c
blob: 96744cb7ceac6f65403ecd95adea44dda9871282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <opus.h>
#include <stdio.h>
#include <stdlib.h>

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;
}