pantry/projects/speex.org/test.c
andrejrabcenko ed61b6dff6 new file: projects/speex.org/package.yml
new file:   projects/speex.org/test.c
2023-05-01 14:21:33 -04:00

14 lines
247 B
C

#include <speex/speex.h>
int main() {
SpeexBits bits;
void *enc_state;
speex_bits_init(&bits);
enc_state = speex_encoder_init(&speex_nb_mode);
speex_bits_destroy(&bits);
speex_encoder_destroy(enc_state);
return 0;
}