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

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/isacfix.gypi

Issue 1194773002: Re-enable WebRtcIsacfix_AllpassFilter2FixDec16Neon (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: remove lto block in isacfix.gypi Created 5 years, 4 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
« no previous file with comments | « webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'targets': [ 130 'targets': [
131 { 131 {
132 'target_name': 'isac_neon', 132 'target_name': 'isac_neon',
133 'type': 'static_library', 133 'type': 'static_library',
134 'includes': ['../../../../build/arm_neon.gypi',], 134 'includes': ['../../../../build/arm_neon.gypi',],
135 'dependencies': [ 135 'dependencies': [
136 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 136 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
137 ], 137 ],
138 'sources': [ 138 'sources': [
139 'fix/source/entropy_coding_neon.c', 139 'fix/source/entropy_coding_neon.c',
140 'fix/source/filterbanks_neon.c',
140 'fix/source/filters_neon.c', 141 'fix/source/filters_neon.c',
141 'fix/source/lattice_neon.c', 142 'fix/source/lattice_neon.c',
142 'fix/source/transform_neon.c', 143 'fix/source/transform_neon.c',
143 ], 144 ],
144 'conditions': [
145 # Disable AllpassFilter2FixDec16Neon function due to a clang bug.
146 # For more details refer to:
147 # https://code.google.com/p/webrtc/issues/detail?id=4567
148 ['target_arch!="arm64" or clang==0', {
149 'sources': ['fix/source/filterbanks_neon.c',],
150 }]
151 ],
152 }, 145 },
153 ], 146 ],
154 }], 147 }],
155 ], 148 ],
156 } 149 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/isac/fix/source/isacfix.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698