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

Side by Side Diff: webrtc/audio/audio_send_stream.cc

Issue 2772773002: Adding cbr support for Opus (Closed)
Patch Set: Created 3 years, 9 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) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 } 296 }
297 297
298 // Codec internal FEC. Treat any failure as fatal internal error. 298 // Codec internal FEC. Treat any failure as fatal internal error.
299 if (send_codec_spec.enable_codec_fec) { 299 if (send_codec_spec.enable_codec_fec) {
300 if (!channel_proxy_->SetCodecFECStatus(true)) { 300 if (!channel_proxy_->SetCodecFECStatus(true)) {
301 LOG(LS_WARNING) << "SetCodecFECStatus() failed."; 301 LOG(LS_WARNING) << "SetCodecFECStatus() failed.";
302 return false; 302 return false;
303 } 303 }
304 } 304 }
305 305
306 // DTX and maxplaybackrate are only set if current codec is Opus. 306 // DTX, CBR, and maxplaybackrate are only set if current codec is Opus.
307 if (IsCodec(send_codec_spec.codec_inst, kOpusCodecName)) { 307 if (IsCodec(send_codec_spec.codec_inst, kOpusCodecName)) {
308 if (!channel_proxy_->SetOpusDtx(send_codec_spec.enable_opus_dtx)) { 308 if (!channel_proxy_->SetOpusDtx(send_codec_spec.enable_opus_dtx)) {
309 LOG(LS_WARNING) << "SetOpusDtx() failed."; 309 LOG(LS_WARNING) << "SetOpusDtx() failed.";
310 return false; 310 return false;
311 } 311 }
312 312
313 if (!channel_proxy_->SetOpusCbr(send_codec_spec.enable_opus_cbr)) {
314 LOG(LS_WARNING) << "SetOpusCbr() failed.";
315 return false;
316 }
317
313 // If opus_max_playback_rate <= 0, the default maximum playback rate 318 // If opus_max_playback_rate <= 0, the default maximum playback rate
314 // (48 kHz) will be used. 319 // (48 kHz) will be used.
315 if (send_codec_spec.opus_max_playback_rate > 0) { 320 if (send_codec_spec.opus_max_playback_rate > 0) {
316 if (!channel_proxy_->SetOpusMaxPlaybackRate( 321 if (!channel_proxy_->SetOpusMaxPlaybackRate(
317 send_codec_spec.opus_max_playback_rate)) { 322 send_codec_spec.opus_max_playback_rate)) {
318 LOG(LS_WARNING) << "SetOpusMaxPlaybackRate() failed."; 323 LOG(LS_WARNING) << "SetOpusMaxPlaybackRate() failed.";
319 return false; 324 return false;
320 } 325 }
321 } 326 }
322 327
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 LOG(LS_WARNING) << "SetVADStatus() failed."; 378 LOG(LS_WARNING) << "SetVADStatus() failed.";
374 return false; 379 return false;
375 } 380 }
376 } 381 }
377 } 382 }
378 return true; 383 return true;
379 } 384 }
380 385
381 } // namespace internal 386 } // namespace internal
382 } // namespace webrtc 387 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698