mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
ed61b6dff6
new file: projects/speex.org/test.c
14 lines
247 B
C
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;
|
|
} |