/external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
h264_video_toolbox_encoder.h | 45 int SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
/external/webrtc/webrtc/test/ |
configurable_frame_size_encoder.h | 40 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
fake_encoder.h | 40 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
configurable_frame_size_encoder.cc | 71 int32_t ConfigurableFrameSizeEncoder::SetChannelParameters(uint32_t packet_loss,
|
fake_encoder.cc | 126 int32_t FakeEncoder::SetChannelParameters(uint32_t packet_loss, int64_t rtt) {
|
/external/webrtc/webrtc/video/ |
video_encoder.cc | 77 fallback_encoder_->SetChannelParameters(packet_loss_, rtt_); 153 int32_t VideoEncoderSoftwareFallbackWrapper::SetChannelParameters( 159 int32_t ret = encoder_->SetChannelParameters(packet_loss, rtt); 161 return fallback_encoder_->SetChannelParameters(packet_loss, rtt);
|
video_encoder_unittest.cc | 53 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override { 224 fallback_wrapper_.SetChannelParameters(1, 1);
|
/external/webrtc/webrtc/ |
video_encoder.h | 113 virtual int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) = 0; 150 int32_t SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
/external/webrtc/webrtc/modules/video_capture/ |
video_capture.h | 90 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) = 0;
|
/external/webrtc/webrtc/modules/video_coding/codecs/i420/include/ |
i420.h | 72 int SetChannelParameters(uint32_t /*packetLoss*/, int64_t /*rtt*/) override {
|
/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/codecs/vp8/ |
simulcast_encoder_adapter.h | 47 int SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
simulcast_encoder_adapter_unittest.cc | 133 MOCK_METHOD2(SetChannelParameters, int32_t(uint32_t packetLoss, int64_t rtt)); 194 SetChannelParameters(packetLoss, rtt)) 344 TEST_F(TestSimulcastEncoderAdapterFake, SetChannelParameters) { 349 adapter_->SetChannelParameters(packetLoss, rtt);
|
vp8_impl.h | 55 virtual int SetChannelParameters(uint32_t packet_loss, int64_t rtt);
|
simulcast_encoder_adapter.cc | 317 int SimulcastEncoderAdapter::SetChannelParameters(uint32_t packet_loss, 320 streaminfos_[stream_idx].encoder->SetChannelParameters(packet_loss, 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/webrtc/modules/video_coding/ |
video_sender_unittest.cc | 308 sender_->SetChannelParameters(settings_.startBitrate * 1000, 0, 200); 328 // Expect initial call to SetChannelParameters. Rates are initialized through 331 EXPECT_CALL(encoder_, SetChannelParameters(kLossRate, kRtt)) 334 sender_->SetChannelParameters(settings_.startBitrate * 1000, kLossRate, kRtt); 344 // Call to SetChannelParameters with changed bitrate should call encoder 345 // SetRates but not encoder SetChannelParameters (that are unchanged). 349 sender_->SetChannelParameters(2 * settings_.startBitrate * 1000, kLossRate, 395 // SetChannelParameters needs to be called frequently to propagate 397 // Note: SetChannelParameters fails if less than 2 frames are in the 400 EXPECT_EQ(VCM_OK, sender_->SetChannelParameters( [all...] |
video_coding_impl.cc | 127 int32_t SetChannelParameters(uint32_t target_bitrate, // bits/s. 130 return sender_.SetChannelParameters(target_bitrate, lossRate, rtt);
|
video_coding_impl.h | 78 int32_t SetChannelParameters(uint32_t target_bitrate, // bits/s.
|
video_sender.cc | 184 int32_t VideoSender::SetChannelParameters(uint32_t target_bitrate,
|
generic_encoder.cc | 184 encoder_->SetChannelParameters(params.loss_rate, params.rtt);
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
vp9_impl.h | 46 int SetChannelParameters(uint32_t packet_loss, int64_t rtt) override;
|
/external/webrtc/webrtc/modules/video_coding/include/ |
video_coding.h | 157 virtual int32_t SetChannelParameters(uint32_t target_bitrate,
|
/external/webrtc/talk/media/webrtc/ |
fakewebrtcvideoengine.h | 173 virtual int32_t SetChannelParameters(uint32_t packetLoss, int64_t rtt) {
|
/external/webrtc/webrtc/modules/video_coding/test/ |
vcm_payload_sink_factory.cc | 148 vcm->SetChannelParameters(0, 0, rtt_ms_);
|