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

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

Issue 1413483003: 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: Initial version Created 5 years, 1 month 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 * libjingle 2 * libjingle
3 * Copyright 2011 Google Inc. 3 * Copyright 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 rtc::scoped_refptr<VideoTrackInterface> 74 rtc::scoped_refptr<VideoTrackInterface>
75 CreateVideoTrack(const std::string& id, 75 CreateVideoTrack(const std::string& id,
76 VideoSourceInterface* video_source) override; 76 VideoSourceInterface* video_source) override;
77 77
78 rtc::scoped_refptr<AudioTrackInterface> 78 rtc::scoped_refptr<AudioTrackInterface>
79 CreateAudioTrack(const std::string& id, 79 CreateAudioTrack(const std::string& id,
80 AudioSourceInterface* audio_source) override; 80 AudioSourceInterface* audio_source) override;
81 81
82 bool StartAecDump(rtc::PlatformFile file) override; 82 bool StartAecDump(rtc::PlatformFile file) override;
83 bool StartAecDump(rtc::PlatformFile file, int max_size_bytes) override;
the sun 2015/10/26 10:37:20 Is the plan to subsequently remove the previous fu
ivoc 2015/11/05 13:14:45 Since the previous function is not used (as far as
83 bool StartRtcEventLog(rtc::PlatformFile file) override; 84 bool StartRtcEventLog(rtc::PlatformFile file) override;
84 void StopRtcEventLog() override; 85 void StopRtcEventLog() override;
85 86
86 virtual webrtc::MediaControllerInterface* CreateMediaController() const; 87 virtual webrtc::MediaControllerInterface* CreateMediaController() const;
87 virtual rtc::Thread* signaling_thread(); 88 virtual rtc::Thread* signaling_thread();
88 virtual rtc::Thread* worker_thread(); 89 virtual rtc::Thread* worker_thread();
89 const Options& options() const { return options_; } 90 const Options& options() const { return options_; }
90 91
91 protected: 92 protected:
92 PeerConnectionFactory(); 93 PeerConnectionFactory();
(...skipping 25 matching lines...) Expand all
118 // injected any. In that case, video engine will use the internal SW decoder. 119 // injected any. In that case, video engine will use the internal SW decoder.
119 rtc::scoped_ptr<cricket::WebRtcVideoDecoderFactory> 120 rtc::scoped_ptr<cricket::WebRtcVideoDecoderFactory>
120 video_decoder_factory_; 121 video_decoder_factory_;
121 122
122 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_; 123 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_;
123 }; 124 };
124 125
125 } // namespace webrtc 126 } // namespace webrtc
126 127
127 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORY_H_ 128 #endif // TALK_APP_WEBRTC_PEERCONNECTIONFACTORY_H_
OLDNEW
« no previous file with comments | « no previous file | talk/app/webrtc/peerconnectionfactory.cc » ('j') | talk/media/webrtc/webrtcvoiceengine.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698