HomeSort by relevance Sort by last modified time
    Searched refs:VideoSendStream (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/webrtc/video/
video_send_stream.h 37 class VideoSendStream : public webrtc::VideoSendStream,
41 VideoSendStream(newapi::Transport* transport,
44 const VideoSendStream::Config& config,
50 virtual ~VideoSendStream();
65 // From webrtc::VideoSendStream.
70 virtual bool GetSendSideDelay(VideoSendStream::Stats* stats) OVERRIDE;
76 const VideoSendStream::Config config_;
send_statistics_proxy.h 40 virtual bool GetSendSideDelay(VideoSendStream::Stats* stats) = 0;
44 SendStatisticsProxy(const VideoSendStream::Config& config,
48 VideoSendStream::Stats GetStats() const;
86 const VideoSendStream::Config config_;
89 VideoSendStream::Stats stats_ GUARDED_BY(crit_);
call.cc 70 virtual VideoSendStream::Config GetDefaultSendConfig() OVERRIDE;
72 virtual VideoSendStream* CreateVideoSendStream(
73 const VideoSendStream::Config& config,
77 virtual void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream)
106 std::map<uint32_t, VideoSendStream*> send_ssrcs_ GUARDED_BY(send_lock_);
176 VideoSendStream::Config Call::GetDefaultSendConfig() {
177 VideoSendStream::Config config;
181 VideoSendStream* Call::CreateVideoSendStream(
182 const VideoSendStream::Config& config,
189 VideoSendStream* send_stream = new VideoSendStream
    [all...]
send_statistics_proxy_unittest.cc 33 expected_ = VideoSendStream::Stats();
36 VideoSendStream::Config GetTestConfig() {
37 VideoSendStream::Config config;
43 virtual bool GetSendSideDelay(VideoSendStream::Stats* stats) OVERRIDE {
51 void ExpectEqual(VideoSendStream::Stats one, VideoSendStream::Stats other) {
92 VideoSendStream::Config config_;
96 VideoSendStream::Stats expected_;
117 VideoSendStream::Stats stats = statistics_proxy_->GetStats();
130 VideoSendStream::Stats stats = statistics_proxy_->GetStats()
    [all...]
video_send_stream.cc 31 VideoSendStream::Config::EncoderSettings::ToString() const {
41 std::string VideoSendStream::Config::Rtp::Rtx::ToString()
57 std::string VideoSendStream::Config::Rtp::ToString() const {
91 std::string VideoSendStream::Config::ToString() const {
111 VideoSendStream::VideoSendStream(newapi::Transport* transport,
114 const VideoSendStream::Config& config,
236 VideoSendStream::~VideoSendStream() {
269 void VideoSendStream::SwapFrame(I420VideoFrame* frame)
    [all...]
send_statistics_proxy.cc 20 const VideoSendStream::Config& config,
47 VideoSendStream::Stats SendStatisticsProxy::GetStats() const {
48 VideoSendStream::Stats stats;
call_perf_tests.cc 66 const VideoSendStream::Config& config,
90 VideoSendStream::Config send_config_;
92 VideoSendStream* send_stream_;
312 VideoSendStream* send_stream =
471 VideoSendStream* send_stream =
589 void SetSendStream(VideoSendStream* send_stream) {
596 VideoSendStream::Stats stats = send_stream_->GetStats();
629 VideoSendStream* send_stream_;
665 VideoSendStream* send_stream =
video_send_stream_tests.cc 92 VideoSendStream::Config send_config_;
94 VideoSendStream* send_stream_;
207 VideoSendStream* stream =
220 VideoSendStream* stream =
418 VideoSendStream* video_send_stream =
813 RembObserver(VideoSendStream** send_stream_ptr)
865 VideoSendStream::Stats stats = (*send_stream_ptr_)->GetStats();
881 VideoSendStream::Stats stats = (*send_stream_ptr_)->GetStats();
    [all...]
loopback.cc 71 VideoSendStream::Config send_config = call->GetDefaultSendConfig();
90 VideoSendStream* send_stream =
rampup_tests.cc 253 virtual void SetSendStream(const VideoSendStream* send_stream) {
411 const VideoSendStream* send_stream_ GUARDED_BY(crit_);
449 VideoSendStream::Config send_config = call->GetDefaultSendConfig();
490 VideoSendStream* send_stream =
524 VideoSendStream::Config send_config = call->GetDefaultSendConfig();
543 VideoSendStream* send_stream =
bitrate_estimator_tests.cc 219 VideoSendStream* send_stream_;
231 VideoSendStream::Config send_config_;
full_stack.cc 397 VideoSendStream::Config send_config = call->GetDefaultSendConfig();
412 VideoSendStream* send_stream =
call_tests.cc 144 VideoSendStream::Config send_config_;
148 VideoSendStream* send_stream_;
    [all...]
  /external/chromium_org/third_party/webrtc/test/
encoder_settings.h 20 const VideoSendStream::Config::EncoderSettings& encoder_settings);
encoder_settings.cc 56 const VideoSendStream::Config::EncoderSettings& encoder_settings) {
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2_unittest.h 39 class FakeVideoSendStream : public webrtc::VideoSendStream {
41 FakeVideoSendStream(const webrtc::VideoSendStream::Config& config,
43 webrtc::VideoSendStream::Config GetConfig();
49 virtual webrtc::VideoSendStream::Stats GetStats() const OVERRIDE;
61 webrtc::VideoSendStream::Config config_;
101 virtual webrtc::VideoSendStream::Config GetDefaultSendConfig() OVERRIDE;
103 virtual webrtc::VideoSendStream* CreateVideoSendStream(
104 const webrtc::VideoSendStream::Config& config,
109 webrtc::VideoSendStream* send_stream) OVERRIDE;
webrtcvideoengine2.h 275 const webrtc::VideoSendStream::Config& config,
294 // webrtc::VideoSendStream doesn't support setting a lot of options on the
299 const webrtc::VideoSendStream::Config& config,
303 webrtc::VideoSendStream::Config config;
306 // Sent resolutions + bitrates etc. by the underlying VideoSendStream,
319 webrtc::VideoSendStream* stream_ GUARDED_BY(lock_);
webrtcvideoengine2_unittest.cc 67 const webrtc::VideoSendStream::Config& config,
72 webrtc::VideoSendStream::Config FakeVideoSendStream::GetConfig() {
84 webrtc::VideoSendStream::Stats FakeVideoSendStream::GetStats() const {
85 return webrtc::VideoSendStream::Stats();
189 webrtc::VideoSendStream::Config FakeCall::GetDefaultSendConfig() {
190 webrtc::VideoSendStream::Config config;
196 webrtc::VideoSendStream* FakeCall::CreateVideoSendStream(
197 const webrtc::VideoSendStream::Config& config,
206 void FakeCall::DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) {
    [all...]
webrtcvideoengine2.cc 891 static bool ConfigureSendSsrcs(webrtc::VideoSendStream::Config* config,
953 webrtc::VideoSendStream::Config config = call_->GetDefaultSendConfig();
961 // TODO(pbos): Set up a temporary fake encoder for VideoSendStream instead
966 // This is only to bring up defaults to make VideoSendStream setup easier
    [all...]
  /external/chromium_org/third_party/webrtc/
call.h 89 virtual VideoSendStream::Config GetDefaultSendConfig() = 0;
91 virtual VideoSendStream* CreateVideoSendStream(
92 const VideoSendStream::Config& config,
96 virtual void DestroyVideoSendStream(VideoSendStream* send_stream) = 0;
video_send_stream.h 38 class VideoSendStream {
75 // initialized from inside the VideoSendStream.
153 // VideoSendStream is valid.
168 virtual ~VideoSendStream() {}

Completed in 894 milliseconds