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

Side by Side Diff: talk/app/webrtc/peerconnectionfactory.cc

Issue 1533913004: Revert of Added option to specify a maximum file size when recording an AEC dump. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years 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 | « talk/app/webrtc/peerconnectionfactory.h ('k') | talk/app/webrtc/peerconnectionfactoryproxy.h » ('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 * libjingle 2 * libjingle
3 * Copyright 2004--2011 Google Inc. 3 * Copyright 2004--2011 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 rtc::scoped_refptr<VideoSourceInterface> 223 rtc::scoped_refptr<VideoSourceInterface>
224 PeerConnectionFactory::CreateVideoSource( 224 PeerConnectionFactory::CreateVideoSource(
225 cricket::VideoCapturer* capturer, 225 cricket::VideoCapturer* capturer,
226 const MediaConstraintsInterface* constraints) { 226 const MediaConstraintsInterface* constraints) {
227 RTC_DCHECK(signaling_thread_->IsCurrent()); 227 RTC_DCHECK(signaling_thread_->IsCurrent());
228 rtc::scoped_refptr<VideoSource> source( 228 rtc::scoped_refptr<VideoSource> source(
229 VideoSource::Create(channel_manager_.get(), capturer, constraints)); 229 VideoSource::Create(channel_manager_.get(), capturer, constraints));
230 return VideoSourceProxy::Create(signaling_thread_, source); 230 return VideoSourceProxy::Create(signaling_thread_, source);
231 } 231 }
232 232
233 bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file, 233 bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file) {
234 int64_t max_size_bytes) {
235 RTC_DCHECK(signaling_thread_->IsCurrent()); 234 RTC_DCHECK(signaling_thread_->IsCurrent());
236 return channel_manager_->StartAecDump(file, max_size_bytes); 235 return channel_manager_->StartAecDump(file);
237 } 236 }
238 237
239 void PeerConnectionFactory::StopAecDump() { 238 void PeerConnectionFactory::StopAecDump() {
240 RTC_DCHECK(signaling_thread_->IsCurrent()); 239 RTC_DCHECK(signaling_thread_->IsCurrent());
241 channel_manager_->StopAecDump(); 240 channel_manager_->StopAecDump();
242 } 241 }
243 242
244 bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file) { 243 bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file) {
245 RTC_DCHECK(signaling_thread_->IsCurrent()); 244 RTC_DCHECK(signaling_thread_->IsCurrent());
246 return channel_manager_->StartRtcEventLog(file); 245 return channel_manager_->StartRtcEventLog(file);
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 } 363 }
365 364
366 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() { 365 cricket::MediaEngineInterface* PeerConnectionFactory::CreateMediaEngine_w() {
367 ASSERT(worker_thread_ == rtc::Thread::Current()); 366 ASSERT(worker_thread_ == rtc::Thread::Current());
368 return cricket::WebRtcMediaEngineFactory::Create( 367 return cricket::WebRtcMediaEngineFactory::Create(
369 default_adm_.get(), video_encoder_factory_.get(), 368 default_adm_.get(), video_encoder_factory_.get(),
370 video_decoder_factory_.get()); 369 video_decoder_factory_.get());
371 } 370 }
372 371
373 } // namespace webrtc 372 } // namespace webrtc
OLDNEW
« no previous file with comments | « talk/app/webrtc/peerconnectionfactory.h ('k') | talk/app/webrtc/peerconnectionfactoryproxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698