tizen 2.3.1 release
[external/opencore-amr.git] / opencore / codecs_v2 / audio / gsm_amr / amr_nb / common / include / mpy_32_16.h
1 /* ------------------------------------------------------------------
2  * Copyright (C) 1998-2010 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: mpy_32_16.h
32
33 ------------------------------------------------------------------------------
34  INCLUDE DESCRIPTION
35
36  This file contains all the constant definitions and prototype definitions
37  needed by the Mpy_32_16 function.
38
39 ------------------------------------------------------------------------------
40 */
41
42 /*----------------------------------------------------------------------------
43 ; CONTINUE ONLY IF NOT ALREADY DEFINED
44 ----------------------------------------------------------------------------*/
45 #ifndef MPY_32_16_H
46 #define MPY_32_16_H
47
48 /*----------------------------------------------------------------------------
49 ; INCLUDES
50 ----------------------------------------------------------------------------*/
51 #include    "basicop_malloc.h"
52
53 /*--------------------------------------------------------------------------*/
54 #ifdef __cplusplus
55 extern "C"
56 {
57 #endif
58
59     /*----------------------------------------------------------------------------
60     ; MACROS
61     ; Define module specific macros here
62     ----------------------------------------------------------------------------*/
63
64
65     /*----------------------------------------------------------------------------
66     ; DEFINES
67     ; Include all pre-processor statements here.
68     ----------------------------------------------------------------------------*/
69
70     /*----------------------------------------------------------------------------
71     ; EXTERNAL VARIABLES REFERENCES
72     ; Declare variables used in this module but defined elsewhere
73     ----------------------------------------------------------------------------*/
74
75     /*----------------------------------------------------------------------------
76     ; SIMPLE TYPEDEF'S
77     ----------------------------------------------------------------------------*/
78
79     /*----------------------------------------------------------------------------
80     ; ENUMERATED TYPEDEF'S
81     ----------------------------------------------------------------------------*/
82
83     /*----------------------------------------------------------------------------
84     ; STRUCTURES TYPEDEF'S
85     ----------------------------------------------------------------------------*/
86
87     /*----------------------------------------------------------------------------
88     ; GLOBAL FUNCTION DEFINITIONS
89     ; Function Prototype declaration
90     ----------------------------------------------------------------------------*/
91 #if   ((PV_CPU_ARCH_VERSION >=5) && (PV_COMPILER == EPV_ARM_GNUC))/* Instructions for ARM-linux cross-compiler*/
92
93     static inline Word32 Mpy_32_16(Word16 L_var1_hi,
94     Word16 L_var1_lo,
95     Word16 var2,
96     Flag *pOverflow)
97     {
98
99         register Word32 ra = L_var1_hi;
100         register Word32 rb = L_var1_lo;
101         register Word32 rc = var2;
102         Word32 result, L_product;
103
104         OSCL_UNUSED_ARG(pOverflow);
105
106         __asm__ volatile("smulbb %0, %1, %2"
107              : "=r"(L_product)
108                              : "r"(ra), "r"(rc)
109                             );
110         __asm__ volatile("mov %0, #0"
111              : "=r"(result)
112                     );
113
114         __asm__ volatile("qdadd %0, %1, %2"
115              : "=r"(L_product)
116                              : "r"(result), "r"(L_product)
117                             );
118
119         __asm__ volatile("smulbb %0, %1, %2"
120              : "=r"(result)
121                              : "r"(rb), "r"(rc)
122                             );
123
124         __asm__ volatile("mov %0, %1, ASR #15"
125              : "=r"(ra)
126                              : "r"(result)
127                             );
128         __asm__ volatile("qdadd %0, %1, %2"
129              : "=r"(result)
130                              : "r"(L_product), "r"(ra)
131                             );
132
133         return (result);
134     }
135
136 #else /* C_EQUIVALENT */
137     static inline Word32 Mpy_32_16(Word16 L_var1_hi,
138                                    Word16 L_var1_lo,
139                                    Word16 var2,
140                                    Flag *pOverflow)
141     {
142
143         Word32 L_product;
144         Word32 L_sum;
145         Word32 result;
146         L_product = (Word32) L_var1_hi * var2;
147
148         if (L_product != (Word32) 0x40000000L)
149         {
150             L_product <<= 1;
151         }
152         else
153         {
154             *pOverflow = 1;
155             L_product = MAX_32;
156         }
157
158         result = ((Word32)L_var1_lo * var2) >> 15;
159
160         L_sum  =  L_product + (result << 1);
161
162         if ((L_product ^ result) > 0)
163         {
164             if ((L_sum ^ L_product) < 0)
165             {
166                 L_sum = (L_product < 0) ? MIN_32 : MAX_32;
167                 *pOverflow = 1;
168             }
169         }
170         return (L_sum);
171
172     }
173
174 #endif
175     /*----------------------------------------------------------------------------
176     ; END
177     ----------------------------------------------------------------------------*/
178 #ifdef __cplusplus
179 }
180 #endif
181
182 #endif /* _MPY_32_16_H_ */
183
184