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

Side by Side Diff: webrtc/webrtc.gni

Issue 2668633004: Adding build switch for Opus that supports 120ms ptime. (Closed)
Patch Set: nit: undo unintended format Created 3 years, 10 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/opus/opus_interface.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) 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/config/features.gni") 10 import("//build/config/features.gni")
11 import("//build/config/mips.gni") 11 import("//build/config/mips.gni")
12 import("//build/config/sanitizers/sanitizers.gni") 12 import("//build/config/sanitizers/sanitizers.gni")
13 import("//build_overrides/build.gni") 13 import("//build_overrides/build.gni")
14 import("//testing/test.gni") 14 import("//testing/test.gni")
15 15
16 declare_args() { 16 declare_args() {
17 # Disable this to avoid building the Opus audio codec. 17 # Disable this to avoid building the Opus audio codec.
18 rtc_include_opus = true 18 rtc_include_opus = true
19 19
20 # Enable this if the Opus version upon which WebRTC is built supports direct
21 # encoding of 120 ms packets.
22 rtc_opus_support_120ms_ptime = false
23
20 # Enable this to let the Opus audio codec change complexity on the fly. 24 # Enable this to let the Opus audio codec change complexity on the fly.
21 rtc_opus_variable_complexity = false 25 rtc_opus_variable_complexity = false
22 26
23 # Disable to use absolute header paths for some libraries. 27 # Disable to use absolute header paths for some libraries.
24 rtc_relative_path = true 28 rtc_relative_path = true
25 29
26 # Used to specify an external Jsoncpp include path when not compiling the 30 # Used to specify an external Jsoncpp include path when not compiling the
27 # library that comes with WebRTC (i.e. rtc_build_json == 0). 31 # library that comes with WebRTC (i.e. rtc_build_json == 0).
28 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include" 32 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include"
29 33
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 ]) 320 ])
317 configs += invoker.configs 321 configs += invoker.configs
318 configs -= rtc_remove_configs 322 configs -= rtc_remove_configs
319 configs -= invoker.suppressed_configs 323 configs -= invoker.suppressed_configs
320 public_configs = [ rtc_common_inherited_config ] 324 public_configs = [ rtc_common_inherited_config ]
321 if (defined(invoker.public_configs)) { 325 if (defined(invoker.public_configs)) {
322 public_configs += invoker.public_configs 326 public_configs += invoker.public_configs
323 } 327 }
324 } 328 }
325 } 329 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/opus/opus_interface.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698