Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/fix/source/filterbank_internal.h

Issue 1955413003: Remove runtime NEON detection (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: gyp syntax Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 void WebRtcIsacfix_AllpassFilter2FixDec16C( 54 void WebRtcIsacfix_AllpassFilter2FixDec16C(
55 int16_t *data_ch1, 55 int16_t *data_ch1,
56 int16_t *data_ch2, 56 int16_t *data_ch2,
57 const int16_t *factor_ch1, 57 const int16_t *factor_ch1,
58 const int16_t *factor_ch2, 58 const int16_t *factor_ch2,
59 const int length, 59 const int length,
60 int32_t *filter_state_ch1, 60 int32_t *filter_state_ch1,
61 int32_t *filter_state_ch2); 61 int32_t *filter_state_ch2);
62 62
63 #if (defined WEBRTC_DETECT_NEON) || (defined WEBRTC_HAS_NEON) 63 #if defined(WEBRTC_HAS_NEON)
64 void WebRtcIsacfix_AllpassFilter2FixDec16Neon( 64 void WebRtcIsacfix_AllpassFilter2FixDec16Neon(
65 int16_t *data_ch1, 65 int16_t *data_ch1,
66 int16_t *data_ch2, 66 int16_t *data_ch2,
67 const int16_t *factor_ch1, 67 const int16_t *factor_ch1,
68 const int16_t *factor_ch2, 68 const int16_t *factor_ch2,
69 const int length, 69 const int length,
70 int32_t *filter_state_ch1, 70 int32_t *filter_state_ch1,
71 int32_t *filter_state_ch2); 71 int32_t *filter_state_ch2);
72 #endif 72 #endif
73 73
74 #if defined(MIPS_DSP_R1_LE) 74 #if defined(MIPS_DSP_R1_LE)
75 void WebRtcIsacfix_AllpassFilter2FixDec16MIPS( 75 void WebRtcIsacfix_AllpassFilter2FixDec16MIPS(
76 int16_t *data_ch1, 76 int16_t *data_ch1,
77 int16_t *data_ch2, 77 int16_t *data_ch2,
78 const int16_t *factor_ch1, 78 const int16_t *factor_ch1,
79 const int16_t *factor_ch2, 79 const int16_t *factor_ch2,
80 const int length, 80 const int length,
81 int32_t *filter_state_ch1, 81 int32_t *filter_state_ch1,
82 int32_t *filter_state_ch2); 82 int32_t *filter_state_ch2);
83 #endif 83 #endif
84 84
85 #if defined(__cplusplus) || defined(c_plusplus) 85 #if defined(__cplusplus) || defined(c_plusplus)
86 } 86 }
87 #endif 87 #endif
88 88
89 #endif 89 #endif
90 /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_ */ 90 /* WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_FILTERBANK_INTERNAL_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698