Git init
[external/opencore-amr.git] / opencore / codecs_v2 / audio / gsm_amr / amr_nb / common / src / c2_9pf_tab.cpp
1 /* ------------------------------------------------------------------
2  * Copyright (C) 1998-2009 PacketVideo
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13  * express or implied.
14  * See the License for the specific language governing permissions
15  * and limitations under the License.
16  * -------------------------------------------------------------------
17  */
18 /****************************************************************************************
19 Portions of this file are derived from the following 3GPP standard:
20
21     3GPP TS 26.073
22     ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
23     Available from http://www.3gpp.org
24
25 (C) 2004, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TTA, TTC)
26 Permission to distribute, modify and use this file under the standard license
27 terms listed above has been obtained from the copyright holder.
28 ****************************************************************************************/
29 /*
30
31  Filename: c2_9pf_tab.cpp
32
33 ------------------------------------------------------------------------------
34  MODULE DESCRIPTION
35
36  This file contains the declaration for startPos[] used by the functions
37  c2_9pf.c and d2_9pf.c
38
39 ------------------------------------------------------------------------------
40 */
41
42 /*----------------------------------------------------------------------------
43 ; INCLUDES
44 ----------------------------------------------------------------------------*/
45 #include "get_const_tbls.h"
46
47 /*--------------------------------------------------------------------------*/
48 #ifdef __cplusplus
49 extern "C"
50 {
51 #endif
52
53     /*----------------------------------------------------------------------------
54     ; MACROS
55     ; [Define module specific macros here]
56     ----------------------------------------------------------------------------*/
57
58     /*----------------------------------------------------------------------------
59     ; DEFINES
60     ; [Include all pre-processor statements here. Include conditional
61     ; compile variables also.]
62     ----------------------------------------------------------------------------*/
63
64     /*----------------------------------------------------------------------------
65     ; LOCAL FUNCTION DEFINITIONS
66     ; [List function prototypes here]
67     ----------------------------------------------------------------------------*/
68
69     /*----------------------------------------------------------------------------
70     ; LOCAL VARIABLE DEFINITIONS
71     ; [Variable declaration - defined here and used outside this module]
72     ----------------------------------------------------------------------------*/
73
74     extern const Word16 startPos[];
75     const Word16 startPos[2*4*2] =
76     {
77         0, 2, 0, 3,
78         0, 2, 0, 3,
79         1, 3, 2, 4,
80         1, 4, 1, 4
81     };
82
83     /*--------------------------------------------------------------------------*/
84 #ifdef __cplusplus
85 }
86 #endif
87
88 /*
89 ------------------------------------------------------------------------------
90  FUNCTION NAME:
91 ------------------------------------------------------------------------------
92  INPUT AND OUTPUT DEFINITIONS
93
94  Inputs:
95     None
96
97  Outputs:
98     None
99
100  Returns:
101     None
102
103  Global Variables Used:
104     None
105
106  Local Variables Needed:
107     None
108
109 ------------------------------------------------------------------------------
110  FUNCTION DESCRIPTION
111
112  None
113
114 ------------------------------------------------------------------------------
115  REQUIREMENTS
116
117  None
118
119 ------------------------------------------------------------------------------
120  REFERENCES
121
122  [1] c2_9pf.c UMTS GSM AMR speech codec, R99 -  Version 3.2.0, March 2, 2001
123
124 ------------------------------------------------------------------------------
125  PSEUDO-CODE
126
127
128 ------------------------------------------------------------------------------
129  CAUTION [optional]
130  [State any special notes, constraints or cautions for users of this function]
131
132 ------------------------------------------------------------------------------
133 */
134
135 /*----------------------------------------------------------------------------
136 ; FUNCTION CODE
137 ----------------------------------------------------------------------------*/