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

  /external/webrtc/webrtc/video/
stream_synchronization.cc 207 void StreamSynchronization::SetTargetBufferingDelay(int target_delay_ms) {
210 target_delay_ms - base_target_delay_ms_;
212 target_delay_ms - base_target_delay_ms_;
217 target_delay_ms - base_target_delay_ms_;
220 target_delay_ms - base_target_delay_ms_;
223 base_target_delay_ms_ = target_delay_ms;
stream_synchronization.h 47 // least target_delay_ms.
48 void SetTargetBufferingDelay(int target_delay_ms);
receive_statistics_proxy.cc 100 int target_delay_ms,
109 stats_.target_delay_ms = target_delay_ms;
114 // Network delay (rtt/2) + target_delay_ms (jitter delay + decode time +
116 delay_counter_.Add(target_delay_ms + rtt_ms / 2);
receive_statistics_proxy.h 53 int target_delay_ms,
vie_channel.h 106 int SetSenderBufferingMode(int target_delay_ms);
244 int target_delay_ms,
312 int GetRequiredNackListSize(int target_delay_ms);
vie_channel.cc 550 int ViEChannel::SetSenderBufferingMode(int target_delay_ms) {
551 if ((target_delay_ms < 0) || (target_delay_ms > kMaxTargetDelayMs)) {
555 if (target_delay_ms == 0) {
559 nack_history_size_sender_ = GetRequiredNackListSize(target_delay_ms);
570 int ViEChannel::GetRequiredNackListSize(int target_delay_ms) {
574 return target_delay_ms * 40 * 30 / 1000;
    [all...]
vie_encoder.cc 431 void ViEEncoder::SetSenderBufferingMode(int target_delay_ms) {
434 target_delay_ms_ = target_delay_ms;
436 if (target_delay_ms > 0) {
vie_encoder.h 105 void SetSenderBufferingMode(int target_delay_ms);
video_receive_stream.cc 65 ss << ", target_delay_ms: " << target_delay_ms; local
video_send_stream.cc 103 ss << ", target_delay_ms: " << target_delay_ms; local
end_to_end_tests.cc     [all...]
  /external/webrtc/webrtc/modules/video_coding/
timing.cc 117 uint32_t target_delay_ms = TargetDelayInternal(); local
121 current_delay_ms_ = target_delay_ms;
122 } else if (target_delay_ms != current_delay_ms_) {
124 static_cast<int64_t>(target_delay_ms) - current_delay_ms_;
158 uint32_t target_delay_ms = TargetDelayInternal(); local
164 if (current_delay_ms_ + delayed_ms <= target_delay_ms) {
167 current_delay_ms_ = target_delay_ms;
270 int* target_delay_ms,
278 *target_delay_ms = TargetDelayInternal();
timing.h 88 int* target_delay_ms,
video_receiver.cc 83 int target_delay_ms; local
88 &target_delay_ms, &jitter_buffer_ms,
91 decode_ms, max_decode_ms, current_delay_ms, target_delay_ms,
  /external/webrtc/webrtc/
video_receive_stream.h 59 int target_delay_ms = 0; member in struct:webrtc::VideoReceiveStream::Stats
169 int target_delay_ms = 0; member in struct:webrtc::VideoReceiveStream::Config
video_send_stream.h 161 int target_delay_ms = 0; member in struct:webrtc::VideoSendStream::Config
  /external/webrtc/webrtc/modules/video_coding/include/
video_coding_defines.h 117 int target_delay_ms,
  /external/webrtc/talk/media/base/
mediachannel.h 826 target_delay_ms(0),
863 int target_delay_ms; member in struct:cricket::VideoReceiverInfo
864 // Current overall delay, possibly ramping towards target_delay_ms.
    [all...]
  /external/webrtc/talk/app/webrtc/
statscollector.cc 228 { StatsReport::kStatsValueNameTargetDelayMs, info.target_delay_ms },
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2.cc     [all...]
webrtcvideoengine2_unittest.cc     [all...]

Completed in 207 milliseconds