mirror of
https://github.com/xiph/opus.git
synced 2025-05-20 18:38:34 +00:00
Add missing include guards
This commit is contained in:
parent
c6db01d2a6
commit
c9b9570970
3 changed files with 15 additions and 0 deletions
|
@ -24,6 +24,9 @@
|
|||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef FREQ_H
|
||||
#define FREQ_H
|
||||
|
||||
#include "kiss_fft.h"
|
||||
|
||||
#define LPC_ORDER 16
|
||||
|
@ -59,3 +62,5 @@ float lpc_from_bands(float *lpc, const float *Ex);
|
|||
float lpc_from_cepstrum(float *lpc, const float *cepstrum);
|
||||
void apply_window(float *x);
|
||||
void lpc_weighting(float *lpc, float gamma);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue