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

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1925053002: Revert of Avoiding overflow in cross correlation in NetEq. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 "neteq/audio_multi_vector.cc", 753 "neteq/audio_multi_vector.cc",
754 "neteq/audio_multi_vector.h", 754 "neteq/audio_multi_vector.h",
755 "neteq/audio_vector.cc", 755 "neteq/audio_vector.cc",
756 "neteq/audio_vector.h", 756 "neteq/audio_vector.h",
757 "neteq/background_noise.cc", 757 "neteq/background_noise.cc",
758 "neteq/background_noise.h", 758 "neteq/background_noise.h",
759 "neteq/buffer_level_filter.cc", 759 "neteq/buffer_level_filter.cc",
760 "neteq/buffer_level_filter.h", 760 "neteq/buffer_level_filter.h",
761 "neteq/comfort_noise.cc", 761 "neteq/comfort_noise.cc",
762 "neteq/comfort_noise.h", 762 "neteq/comfort_noise.h",
763 "neteq/cross_correlation.cc",
764 "neteq/cross_correlation.h",
765 "neteq/decision_logic.cc", 763 "neteq/decision_logic.cc",
766 "neteq/decision_logic.h", 764 "neteq/decision_logic.h",
767 "neteq/decision_logic_fax.cc", 765 "neteq/decision_logic_fax.cc",
768 "neteq/decision_logic_fax.h", 766 "neteq/decision_logic_fax.h",
769 "neteq/decision_logic_normal.cc", 767 "neteq/decision_logic_normal.cc",
770 "neteq/decision_logic_normal.h", 768 "neteq/decision_logic_normal.h",
771 "neteq/decoder_database.cc", 769 "neteq/decoder_database.cc",
772 "neteq/decoder_database.h", 770 "neteq/decoder_database.h",
773 "neteq/defines.h", 771 "neteq/defines.h",
774 "neteq/delay_manager.cc", 772 "neteq/delay_manager.cc",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 defines += [ "WEBRTC_CODEC_ISACFX" ] 847 defines += [ "WEBRTC_CODEC_ISACFX" ]
850 deps += [ ":isac_fix" ] 848 deps += [ ":isac_fix" ]
851 } else { 849 } else {
852 defines += [ "WEBRTC_CODEC_ISAC" ] 850 defines += [ "WEBRTC_CODEC_ISAC" ]
853 deps += [ ":isac" ] 851 deps += [ ":isac" ]
854 } 852 }
855 defines += [ "WEBRTC_CODEC_G722" ] 853 defines += [ "WEBRTC_CODEC_G722" ]
856 deps += [ ":g722" ] 854 deps += [ ":g722" ]
857 } 855 }
858 } 856 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698