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

  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
media_opt_util.cc 377 // No protection if (filtered) packetLoss is 0
378 uint8_t packetLoss = (uint8_t) (255 * parameters->lossPr);
379 if (packetLoss == 0)
396 // Threshold on packetLoss and bitRrate/frameRate (=average #packets),
410 // (for fixed bitRate and packetLoss) based on system size.
437 if (packetLoss >= kPacketLossMax)
439 packetLoss = kPacketLossMax - 1;
441 uint16_t indexTable = rateIndexTable * kPacketLossMax + packetLoss;
449 if (packetLoss > lossThr && avgTotPackets > packetNumThr)
473 packetLoss);
    [all...]
generic_encoder.h 106 int32_t SetChannelParameters(int32_t packetLoss, int rtt);
generic_encoder.cc 109 VCMGenericEncoder::SetChannelParameters(int32_t packetLoss, int rtt)
111 return _encoder.SetChannelParameters(packetLoss, rtt);
  /external/chromium_org/third_party/webrtc/modules/video_capture/include/
video_capture.h 87 // - packetLoss : Fraction lost
88 // (loss rate in percent = 100 * packetLoss / 255).
90 virtual int32_t SetChannelParameters(uint32_t packetLoss, int rtt) = 0;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
test_util.h 39 int packetLoss;
tester_main.cc 75 args.packetLoss = FLAGS_packet_loss_percent;
test_util.cc 30 packetLoss(0),
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/interface/mock/
mock_video_codec_interface.h 42 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int rtt));
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_I420_codec.h 41 virtual int32_t SetChannelParameters(uint32_t packetLoss, int rtt) OVERRIDE;
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
MediaEngine.java 649 int packetLoss = 0;
655 packetLoss = (stats.fractionLost * 100) >> 8;
662 "loss: " + packetLoss + "%";
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
tb_I420_codec.cc 49 int32_t TbI420Encoder::SetChannelParameters(uint32_t packetLoss, int rtt) {
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvideoengine.h 173 virtual int32 SetChannelParameters(uint32 packetLoss,
    [all...]
  /external/chromium_org/third_party/webrtc/video/
video_send_stream_tests.cc     [all...]

Completed in 960 milliseconds