comparison libtwamr/lag_wind.h @ 384:a8dab7028e4d

libtwamr: integrate lag_wind.c
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 06 May 2024 05:56:50 +0000
parents
children
comparison
equal deleted inserted replaced
383:838ed426bb76 384:a8dab7028e4d
1 /*
2 ********************************************************************************
3 *
4 * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
5 * R99 Version 3.3.0
6 * REL-4 Version 4.1.0
7 *
8 ********************************************************************************
9 *
10 * File : lag_wind.h
11 * Purpose : Lag windowing of autocorrelations.
12 *
13 ********************************************************************************
14 */
15 #ifndef lag_wind_h
16 #define lag_wind_h "$Id $"
17
18 /*
19 ********************************************************************************
20 * INCLUDE FILES
21 ********************************************************************************
22 */
23 #include "typedef.h"
24
25 /*
26 ********************************************************************************
27 * DEFINITION OF DATA TYPES
28 ********************************************************************************
29 */
30
31 /*
32 ********************************************************************************
33 * DECLARATION OF PROTOTYPES
34 ********************************************************************************
35 */
36 void Lag_window (
37 Word16 m, /* (i) : LPC order */
38 Word16 r_h[], /* (i/o) : Autocorrelations (msb) */
39 Word16 r_l[] /* (i/o) : Autocorrelations (lsb) */
40 );
41
42 #endif