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

Side by Side Diff: webrtc/media/engine/webrtcvoiceengine.cc

Issue 2669733002: Add 120ms frame ability to ANA (Closed)
Patch Set: 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/media/BUILD.gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 if (IsCodec(*voe_codec, kG722CodecName)) { 491 if (IsCodec(*voe_codec, kG722CodecName)) {
492 // If the DCHECK triggers, the codec definition in WebRTC VoiceEngine 492 // If the DCHECK triggers, the codec definition in WebRTC VoiceEngine
493 // has changed, and this special case is no longer needed. 493 // has changed, and this special case is no longer needed.
494 RTC_DCHECK(voe_codec->plfreq != new_plfreq); 494 RTC_DCHECK(voe_codec->plfreq != new_plfreq);
495 voe_codec->plfreq = new_plfreq; 495 voe_codec->plfreq = new_plfreq;
496 } 496 }
497 } 497 }
498 }; 498 };
499 499
500 const WebRtcVoiceCodecs::CodecPref WebRtcVoiceCodecs::kCodecPrefs[14] = { 500 const WebRtcVoiceCodecs::CodecPref WebRtcVoiceCodecs::kCodecPrefs[14] = {
501 {kOpusCodecName, 48000, 2, 111, true, {10, 20, 40, 60}, kOpusMaxBitrateBps}, 501 {kOpusCodecName, 48000, 2, 111, true, {10, 20, 40, 60}, kOpusMaxBitrateBps},
minyue-webrtc 2017/02/01 08:20:23 don't we need to add 120 here?
michaelt 2017/02/01 11:38:46 This will just be necessary for the non ANA case.
502 {kIsacCodecName, 16000, 1, 103, true, {30, 60}, kIsacMaxBitrateBps}, 502 {kIsacCodecName, 16000, 1, 103, true, {30, 60}, kIsacMaxBitrateBps},
503 {kIsacCodecName, 32000, 1, 104, true, {30}, kIsacMaxBitrateBps}, 503 {kIsacCodecName, 32000, 1, 104, true, {30}, kIsacMaxBitrateBps},
504 // G722 should be advertised as 8000 Hz because of the RFC "bug". 504 // G722 should be advertised as 8000 Hz because of the RFC "bug".
505 {kG722CodecName, 8000, 1, 9, false, {10, 20, 30, 40, 50, 60}}, 505 {kG722CodecName, 8000, 1, 9, false, {10, 20, 30, 40, 50, 60}},
506 {kIlbcCodecName, 8000, 1, 102, false, {20, 30, 40, 60}}, 506 {kIlbcCodecName, 8000, 1, 102, false, {20, 30, 40, 60}},
507 {kPcmuCodecName, 8000, 1, 0, false, {10, 20, 30, 40, 50, 60}}, 507 {kPcmuCodecName, 8000, 1, 0, false, {10, 20, 30, 40, 50, 60}},
508 {kPcmaCodecName, 8000, 1, 8, false, {10, 20, 30, 40, 50, 60}}, 508 {kPcmaCodecName, 8000, 1, 8, false, {10, 20, 30, 40, 50, 60}},
509 {kCnCodecName, 32000, 1, 106, false, {}}, 509 {kCnCodecName, 32000, 1, 106, false, {}},
510 {kCnCodecName, 16000, 1, 105, false, {}}, 510 {kCnCodecName, 16000, 1, 105, false, {}},
511 {kCnCodecName, 8000, 1, 13, false, {}}, 511 {kCnCodecName, 8000, 1, 13, false, {}},
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 if (!packet_sizes_ms.empty()) { 1466 if (!packet_sizes_ms.empty()) {
1467 int max_packet_size_ms = 1467 int max_packet_size_ms =
1468 *std::max_element(packet_sizes_ms.begin(), packet_sizes_ms.end()); 1468 *std::max_element(packet_sizes_ms.begin(), packet_sizes_ms.end());
1469 int min_packet_size_ms = 1469 int min_packet_size_ms =
1470 *std::min_element(packet_sizes_ms.begin(), packet_sizes_ms.end()); 1470 *std::min_element(packet_sizes_ms.begin(), packet_sizes_ms.end());
1471 1471
1472 // Audio network adaptor will just use 20ms and 60ms frame lengths. 1472 // Audio network adaptor will just use 20ms and 60ms frame lengths.
1473 // The adaptor will only be active for the Opus encoder. 1473 // The adaptor will only be active for the Opus encoder.
1474 if (config_.audio_network_adaptor_config && 1474 if (config_.audio_network_adaptor_config &&
1475 IsCodec(config_.send_codec_spec.codec_inst, kOpusCodecName)) { 1475 IsCodec(config_.send_codec_spec.codec_inst, kOpusCodecName)) {
1476 #if WEBRTC_OPUS_SUPPORT_120MS_PTIME
1477 max_packet_size_ms = 120;
1478 #else
1476 max_packet_size_ms = 60; 1479 max_packet_size_ms = 60;
1480 #endif
1477 min_packet_size_ms = 20; 1481 min_packet_size_ms = 20;
1478 } 1482 }
1479 1483
1480 // OverheadPerPacket = Ipv4(20B) + UDP(8B) + SRTP(10B) + RTP(12) 1484 // OverheadPerPacket = Ipv4(20B) + UDP(8B) + SRTP(10B) + RTP(12)
1481 constexpr int kOverheadPerPacket = 20 + 8 + 10 + 12; 1485 constexpr int kOverheadPerPacket = 20 + 8 + 10 + 12;
1482 1486
1483 int min_overhead_bps = 1487 int min_overhead_bps =
1484 kOverheadPerPacket * 8 * 1000 / max_packet_size_ms; 1488 kOverheadPerPacket * 8 * 1000 / max_packet_size_ms;
1485 1489
1486 int max_overhead_bps = 1490 int max_overhead_bps =
(...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2705 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); 2709 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
2706 const auto it = send_streams_.find(ssrc); 2710 const auto it = send_streams_.find(ssrc);
2707 if (it != send_streams_.end()) { 2711 if (it != send_streams_.end()) {
2708 return it->second->channel(); 2712 return it->second->channel();
2709 } 2713 }
2710 return -1; 2714 return -1;
2711 } 2715 }
2712 } // namespace cricket 2716 } // namespace cricket
2713 2717
2714 #endif // HAVE_WEBRTC_VOICE 2718 #endif // HAVE_WEBRTC_VOICE
OLDNEW
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698