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

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

Issue 2546493002: Update smoothed bitrate. (Closed)
Patch Set: Renamed OnReceivedTargetAudioBitrate to OnReceivedUplinkBandwidth Created 3 years, 11 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/BUILD.gn ('k') | webrtc/modules/audio_coding/acm2/audio_coding_module.cc » ('j') | 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) 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 "codecs/opus/audio_encoder_opus.h", 832 "codecs/opus/audio_encoder_opus.h",
833 ] 833 ]
834 834
835 deps = [ 835 deps = [
836 ":audio_decoder_interface", 836 ":audio_decoder_interface",
837 ":audio_encoder_interface", 837 ":audio_encoder_interface",
838 ":audio_network_adaptor", 838 ":audio_network_adaptor",
839 "../..:webrtc_common", 839 "../..:webrtc_common",
840 "../../base:rtc_analytics", 840 "../../base:rtc_analytics",
841 "../../base:rtc_base_approved", 841 "../../base:rtc_base_approved",
842 "../../common_audio",
842 "../../system_wrappers", 843 "../../system_wrappers",
843 ] 844 ]
844 public_deps = [ 845 public_deps = [
845 ":webrtc_opus_c", 846 ":webrtc_opus_c",
846 ] 847 ]
847 848
848 defines = [] 849 defines = []
849 if (rtc_opus_variable_complexity) { 850 if (rtc_opus_variable_complexity) {
850 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] 851 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ]
851 } else { 852 } else {
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1911 "../../test:test_main", 1912 "../../test:test_main",
1912 "//testing/gtest", 1913 "//testing/gtest",
1913 ] 1914 ]
1914 1915
1915 if (!build_with_chromium && is_clang) { 1916 if (!build_with_chromium && is_clang) {
1916 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1917 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1917 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1918 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1918 } 1919 }
1919 } 1920 }
1920 } 1921 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/audio_coding/acm2/audio_coding_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698