Home
last modified time | relevance | path

Searched refs:packetLoss (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dmedia_opt_util.cc256 uint8_t packetLoss = (uint8_t)(255 * parameters->lossPr); in ProtectionFactor() local
257 if (packetLoss == 0) { in ProtectionFactor()
313 if (packetLoss >= kPacketLossMax) { in ProtectionFactor()
314 packetLoss = kPacketLossMax - 1; in ProtectionFactor()
316 uint16_t indexTable = rateIndexTable * kPacketLossMax + packetLoss; in ProtectionFactor()
324 if (packetLoss > lossThr && avgTotPackets > packetNumThr) { in ProtectionFactor()
342 parameters->rtt, packetLoss); in ProtectionFactor()
359 uint16_t indexTableKey = rateIndexTable * kPacketLossMax + packetLoss; in ProtectionFactor()
378 VCM_MAX(packetLoss, VCM_MAX(boostKeyProt, codeRateKey))); in ProtectionFactor()
416 codeRateKey, parameters->bitRate, packetLoss, 0); in ProtectionFactor()
[all …]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dsimulcast_encoder_adapter_unittest.cc133 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
190 void ExpectCallSetChannelParameters(uint32_t packetLoss, int64_t rtt) { in ExpectCallSetChannelParameters() argument
194 SetChannelParameters(packetLoss, rtt)) in ExpectCallSetChannelParameters()
346 const uint32_t packetLoss = 5; in TEST_F() local
348 helper_->ExpectCallSetChannelParameters(packetLoss, rtt); in TEST_F()
349 adapter_->SetChannelParameters(packetLoss, rtt); in TEST_F()
Dvp8_impl.cc1044 int VP8EncoderImpl::SetChannelParameters(uint32_t packetLoss, int64_t rtt) { in SetChannelParameters() argument
/external/webrtc/webrtc/modules/video_coding/codecs/interface/mock/
Dmock_video_codec_interface.h48 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
/external/webrtc/webrtc/modules/video_coding/include/mock/
Dmock_video_codec_interface.h46 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt));
/external/webrtc/webrtc/modules/video_capture/
Dvideo_capture.h90 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) = 0;
/external/webrtc/talk/media/webrtc/
Dfakewebrtcvideoengine.h173 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) { in SetChannelParameters() argument
/external/webrtc/webrtc/video/
Dvideo_send_stream_tests.cc1314 int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) override { in TEST_F() argument