Git init
[external/opencore-amr.git] / opencore / codecs_v2 / audio / gsm_amr / amr_nb / common / src / overflow_tbl.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: overflow_tbl.cpp
32
33 ------------------------------------------------------------------------------
34  MODULE DESCRIPTION
35
36  This file contains the declaration for overflow_tbl[] used by the l_shl()
37  and l_shr() functions.
38
39 ------------------------------------------------------------------------------
40 */
41
42 /*----------------------------------------------------------------------------
43 ; INCLUDES
44 ----------------------------------------------------------------------------*/
45 #include "typedef.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     const Word32 overflow_tbl [32]   = {0x7fffffffL, 0x3fffffffL,
74         0x1fffffffL, 0x0fffffffL,
75         0x07ffffffL, 0x03ffffffL,
76         0x01ffffffL, 0x00ffffffL,
77         0x007fffffL, 0x003fffffL,
78         0x001fffffL, 0x000fffffL,
79         0x0007ffffL, 0x0003ffffL,
80         0x0001ffffL, 0x0000ffffL,
81         0x00007fffL, 0x00003fffL,
82         0x00001fffL, 0x00000fffL,
83         0x000007ffL, 0x000003ffL,
84         0x000001ffL, 0x000000ffL,
85         0x0000007fL, 0x0000003fL,
86         0x0000001fL, 0x0000000fL,
87         0x00000007L, 0x00000003L,
88         0x00000001L, 0x00000000L
89     };
90
91     /*--------------------------------------------------------------------------*/
92 #ifdef __cplusplus
93 }
94 #endif
95
96 /*
97 ------------------------------------------------------------------------------
98  FUNCTION NAME:
99 ------------------------------------------------------------------------------
100  INPUT AND OUTPUT DEFINITIONS
101
102  Inputs:
103     None
104
105  Outputs:
106     None
107
108  Returns:
109     None
110
111  Global Variables Used:
112     None
113
114  Local Variables Needed:
115     None
116
117 ------------------------------------------------------------------------------
118  FUNCTION DESCRIPTION
119
120  None
121
122 ------------------------------------------------------------------------------
123  REQUIREMENTS
124
125  None
126
127 ------------------------------------------------------------------------------
128  REFERENCES
129
130  [1] l_shl() function in basic_op2.c,  UMTS GSM AMR speech codec, R99 -
131  Version 3.2.0, March 2, 2001
132
133 ------------------------------------------------------------------------------
134  PSEUDO-CODE
135
136
137 ------------------------------------------------------------------------------
138  CAUTION [optional]
139  [State any special notes, constraints or cautions for users of this function]
140
141 ------------------------------------------------------------------------------
142 */
143
144 /*----------------------------------------------------------------------------
145 ; FUNCTION CODE
146 ----------------------------------------------------------------------------*/
147