OLD | NEW |
---|---|
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 #include "webrtc/video/video_quality_test.h" | 10 #include "webrtc/video/video_quality_test.h" |
(...skipping 1694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1705 // adaptation. | 1705 // adaptation. |
1706 audio_send_config_.rtp.extensions.clear(); | 1706 audio_send_config_.rtp.extensions.clear(); |
1707 if (params_.call.send_side_bwe) { | 1707 if (params_.call.send_side_bwe) { |
1708 audio_send_config_.rtp.extensions.push_back( | 1708 audio_send_config_.rtp.extensions.push_back( |
1709 webrtc::RtpExtension(webrtc::RtpExtension::kTransportSequenceNumberUri, | 1709 webrtc::RtpExtension(webrtc::RtpExtension::kTransportSequenceNumberUri, |
1710 test::kTransportSequenceNumberExtensionId)); | 1710 test::kTransportSequenceNumberExtensionId)); |
1711 audio_send_config_.min_bitrate_bps = kOpusMinBitrateBps; | 1711 audio_send_config_.min_bitrate_bps = kOpusMinBitrateBps; |
1712 audio_send_config_.max_bitrate_bps = kOpusBitrateFbBps; | 1712 audio_send_config_.max_bitrate_bps = kOpusBitrateFbBps; |
1713 } | 1713 } |
1714 audio_send_config_.send_codec_spec.codec_inst = | 1714 audio_send_config_.send_codec_spec.codec_inst = |
1715 CodecInst{120, "OPUS", 48000, 960, 2, 64000}; | 1715 CodecInst{103, "OPUS", 48000, 960, 2, 64000}; |
minyue-webrtc
2017/04/04 06:47:59
Karl, 120 fails, which is weird to me. Please advi
minyue-webrtc
2017/04/04 09:35:44
Continuing bisecting reflected another cause of fa
minyue-webrtc
2017/04/04 09:38:42
On 2017/04/04 09:35:44, minyue-webrtc wrote:
> On
| |
1716 audio_send_config_.send_codec_spec.enable_opus_dtx = params_.audio.dtx; | 1716 audio_send_config_.send_codec_spec.enable_opus_dtx = params_.audio.dtx; |
1717 audio_send_stream_ = call->CreateAudioSendStream(audio_send_config_); | 1717 audio_send_stream_ = call->CreateAudioSendStream(audio_send_config_); |
1718 | 1718 |
1719 AudioReceiveStream::Config audio_config; | 1719 AudioReceiveStream::Config audio_config; |
1720 audio_config.rtp.local_ssrc = kReceiverLocalAudioSsrc; | 1720 audio_config.rtp.local_ssrc = kReceiverLocalAudioSsrc; |
1721 audio_config.rtcp_send_transport = transport; | 1721 audio_config.rtcp_send_transport = transport; |
1722 audio_config.voe_channel_id = receive_channel_id; | 1722 audio_config.voe_channel_id = receive_channel_id; |
1723 audio_config.rtp.remote_ssrc = audio_send_config_.rtp.ssrc; | 1723 audio_config.rtp.remote_ssrc = audio_send_config_.rtp.ssrc; |
1724 audio_config.rtp.transport_cc = params_.call.send_side_bwe; | 1724 audio_config.rtp.transport_cc = params_.call.send_side_bwe; |
1725 audio_config.rtp.extensions = audio_send_config_.rtp.extensions; | 1725 audio_config.rtp.extensions = audio_send_config_.rtp.extensions; |
1726 audio_config.decoder_factory = decoder_factory_; | 1726 audio_config.decoder_factory = decoder_factory_; |
1727 audio_config.decoder_map = {{103, {"OPUS", 48000, 2}}}; | |
1727 if (params_.video.enabled && params_.audio.sync_video) | 1728 if (params_.video.enabled && params_.audio.sync_video) |
1728 audio_config.sync_group = kSyncGroup; | 1729 audio_config.sync_group = kSyncGroup; |
1729 | 1730 |
1730 *audio_receive_stream = call->CreateAudioReceiveStream(audio_config); | 1731 *audio_receive_stream = call->CreateAudioReceiveStream(audio_config); |
1731 } | 1732 } |
1732 | 1733 |
1733 void VideoQualityTest::RunWithRenderers(const Params& params) { | 1734 void VideoQualityTest::RunWithRenderers(const Params& params) { |
1734 params_ = params; | 1735 params_ = params; |
1735 CheckParams(); | 1736 CheckParams(); |
1736 | 1737 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1884 if (!params_.video.encoded_frame_base_path.empty()) { | 1885 if (!params_.video.encoded_frame_base_path.empty()) { |
1885 std::ostringstream str; | 1886 std::ostringstream str; |
1886 str << receive_logs_++; | 1887 str << receive_logs_++; |
1887 std::string path = | 1888 std::string path = |
1888 params_.video.encoded_frame_base_path + "." + str.str() + ".recv.ivf"; | 1889 params_.video.encoded_frame_base_path + "." + str.str() + ".recv.ivf"; |
1889 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path), | 1890 stream->EnableEncodedFrameRecording(rtc::CreatePlatformFile(path), |
1890 10000000); | 1891 10000000); |
1891 } | 1892 } |
1892 } | 1893 } |
1893 } // namespace webrtc | 1894 } // namespace webrtc |
OLD | NEW |