| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 const int matrix0_index_step, | 140 const int matrix0_index_step, |
| 141 const int inner_loop_count, | 141 const int inner_loop_count, |
| 142 const int mid_loop_count, | 142 const int mid_loop_count, |
| 143 const int shift); | 143 const int shift); |
| 144 void WebRtcIsacfix_MatrixProduct2C(const int16_t matrix0[], | 144 void WebRtcIsacfix_MatrixProduct2C(const int16_t matrix0[], |
| 145 const int32_t matrix1[], | 145 const int32_t matrix1[], |
| 146 int32_t matrix_product[], | 146 int32_t matrix_product[], |
| 147 const int matrix0_index_factor, | 147 const int matrix0_index_factor, |
| 148 const int matrix0_index_step); | 148 const int matrix0_index_step); |
| 149 | 149 |
| 150 #if (defined WEBRTC_DETECT_NEON) || (defined WEBRTC_HAS_NEON) | 150 #if defined(WEBRTC_HAS_NEON) |
| 151 void WebRtcIsacfix_MatrixProduct1Neon(const int16_t matrix0[], | 151 void WebRtcIsacfix_MatrixProduct1Neon(const int16_t matrix0[], |
| 152 const int32_t matrix1[], | 152 const int32_t matrix1[], |
| 153 int32_t matrix_product[], | 153 int32_t matrix_product[], |
| 154 const int matrix1_index_factor1, | 154 const int matrix1_index_factor1, |
| 155 const int matrix0_index_factor1, | 155 const int matrix0_index_factor1, |
| 156 const int matrix1_index_init_case, | 156 const int matrix1_index_init_case, |
| 157 const int matrix1_index_step, | 157 const int matrix1_index_step, |
| 158 const int matrix0_index_step, | 158 const int matrix0_index_step, |
| 159 const int inner_loop_count, | 159 const int inner_loop_count, |
| 160 const int mid_loop_count, | 160 const int mid_loop_count, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 180 const int shift); | 180 const int shift); |
| 181 | 181 |
| 182 void WebRtcIsacfix_MatrixProduct2MIPS(const int16_t matrix0[], | 182 void WebRtcIsacfix_MatrixProduct2MIPS(const int16_t matrix0[], |
| 183 const int32_t matrix1[], | 183 const int32_t matrix1[], |
| 184 int32_t matrix_product[], | 184 int32_t matrix_product[], |
| 185 const int matrix0_index_factor, | 185 const int matrix0_index_factor, |
| 186 const int matrix0_index_step); | 186 const int matrix0_index_step); |
| 187 #endif | 187 #endif |
| 188 | 188 |
| 189 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_ENTROPY_CODING_H_ | 189 #endif // WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_ENTROPY_CODING_H_ |
| OLD | NEW |