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

  /external/webrtc/webrtc/modules/video_coding/
media_opt_util.cc 255 // No protection if (filtered) packetLoss is 0
256 uint8_t packetLoss = (uint8_t)(255 * parameters->lossPr);
257 if (packetLoss == 0) {
273 // Threshold on packetLoss and bitRrate/frameRate (=average #packets),
287 // (for fixed bitRate and packetLoss) based on system size.
313 if (packetLoss >= kPacketLossMax) {
314 packetLoss = kPacketLossMax - 1;
316 uint16_t indexTable = rateIndexTable * kPacketLossMax + packetLoss;
324 if (packetLoss > lossThr && avgTotPackets > packetNumThr) {
342 parameters->rtt, packetLoss);
    [all...]
  /external/webrtc/webrtc/modules/video_capture/
video_capture.h 87 // - packetLoss : Fraction lost
88 // (loss rate in percent = 100 * packetLoss / 255).
90 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) = 0;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_encoder_adapter_unittest.cc 133 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
190 void ExpectCallSetChannelParameters(uint32_t packetLoss, int64_t rtt) {
194 SetChannelParameters(packetLoss, rtt))
346 const uint32_t packetLoss = 5;
348 helper_->ExpectCallSetChannelParameters(packetLoss, rtt);
349 adapter_->SetChannelParameters(packetLoss, rtt);
vp8_impl.cc     [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/interface/mock/
mock_video_codec_interface.h 48 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
  /external/webrtc/webrtc/modules/video_coding/include/mock/
mock_video_codec_interface.h 46 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
  /external/webrtc/talk/media/webrtc/
fakewebrtcvideoengine.h 173 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) {
  /external/webrtc/webrtc/video/
video_send_stream_tests.cc     [all...]

Completed in 270 milliseconds