mirror of
https://github.com/xiph/opus.git
synced 2025-06-05 15:03:39 +00:00
4 lines
189 B
Bash
Executable file
4 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
|
|
gcc -DTRAINING=1 -Wall -W -O3 -g -I../include denoise.c kiss_fft.c pitch.c celt_lpc.c -o dump_data -lm
|
|
gcc -o test_lpcnet -g -O2 -Wall -W -Wextra lpcnet.c nnet.c nnet_data.c -lm
|