comparison libtwamr/g_code.h @ 366:1588a7d9e732

libtwamr: integrate g_code.c
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 06 May 2024 03:04:57 +0000
parents
children
comparison
equal deleted inserted replaced
365:2a265be82195 366:1588a7d9e732
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 : g_code.h
11 * Purpose : Compute the innovative codebook gain.
12 *
13 ********************************************************************************
14 */
15 #ifndef g_code_h
16 #define g_code_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 Word16 G_code ( /* out : Gain of innovation code. */
37 Word16 xn[], /* in : target vector */
38 Word16 y2[] /* in : filtered inovation vector */
39 );
40
41 #endif