/external/webrtc/webrtc/modules/video_coding/ |
H A D | media_optimization_unittest.cc | 140 uint32_t target_bitrate = media_opt_.SetTargetRates( local 143 EXPECT_EQ(kCodecBitrateBps, static_cast<int>(target_bitrate)); 148 target_bitrate = media_opt_.SetTargetRates(kMaxBitrateBps, 128, 100, 150 EXPECT_EQ(kMaxBitrateBps / 2, static_cast<int>(target_bitrate));
|
H A D | media_optimization.cc | 143 uint32_t target_bitrate, 151 target_bitrate, width, height, num_layers, mtu); 157 uint32_t target_bitrate, 172 video_target_bitrate_ = target_bitrate; 173 float target_bitrate_kbps = static_cast<float>(target_bitrate) / 1000.0f; 190 uint32_t target_bitrate, 197 float target_bitrate_kbps = static_cast<float>(target_bitrate) / 1000.0f; 272 video_target_bitrate_ = target_bitrate * (1.0 - protection_overhead_rate); 141 SetEncodingData(VideoCodecType send_codec_type, int32_t max_bit_rate, uint32_t target_bitrate, uint16_t width, uint16_t height, uint32_t frame_rate, int num_layers, int32_t mtu) argument 154 SetEncodingDataInternal(VideoCodecType send_codec_type, int32_t max_bit_rate, uint32_t frame_rate, uint32_t target_bitrate, uint16_t width, uint16_t height, int num_layers, int32_t mtu) argument 189 SetTargetRates( uint32_t target_bitrate, uint8_t fraction_lost, int64_t round_trip_time_ms, VCMProtectionCallback* protection_callback, VCMQMSettingsCallback* qmsettings_callback) argument
|
H A D | video_sender.cc | 167 *bitrate = _encoder->GetEncoderParameters().target_bitrate; 184 int32_t VideoSender::SetChannelParameters(uint32_t target_bitrate, argument 188 _mediaOpt.SetTargetRates(target_bitrate, lossRate, rtt, 200 if (params.target_bitrate == 0)
|
H A D | generic_encoder.cc | 121 encoder_params_.target_bitrate = settings->startBitrate * 1000; 179 params.target_bitrate != encoder_params_.target_bitrate || 186 uint32_t target_bitrate_kbps = (params.target_bitrate + 500) / 1000; 189 rate_observer_->OnSetRates(params.target_bitrate,
|
H A D | generic_encoder.h | 31 uint32_t target_bitrate; member in struct:webrtc::EncoderParameters
|
H A D | media_optimization.h | 59 uint32_t SetTargetRates(uint32_t target_bitrate,
|
H A D | qm_select.h | 206 void UpdateRates(float target_bitrate,
|
H A D | video_coding_impl.cc | 127 int32_t SetChannelParameters(uint32_t target_bitrate, // bits/s. 130 return sender_.SetChannelParameters(target_bitrate, lossRate, rtt);
|
H A D | video_coding_impl.h | 78 int32_t SetChannelParameters(uint32_t target_bitrate, // bits/s.
|
/external/webrtc/webrtc/call/ |
H A D | bitrate_allocator.h | 34 // Allocate target_bitrate across the registered BitrateObservers. 35 // Returns actual bitrate allocated (might be higher than target_bitrate if 37 uint32_t OnNetworkChanged(uint32_t target_bitrate,
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
H A D | vp8_sequence_coder.cc | 97 int target_bitrate = strtol((parser->GetFlag("b")).c_str(), NULL, 10); local 98 if (target_bitrate <= 0) { 138 inst.startBitrate = target_bitrate;
|
H A D | vp8_impl.cc | 275 unsigned int target_bitrate = stream_bitrates[stream_idx]; local 286 int tl0_bitrate = std::min(codec_.targetBitrate, target_bitrate); 287 max_bitrate = std::min(codec_.maxBitrate, target_bitrate); 288 target_bitrate = tl0_bitrate; 290 configurations_[i].rc_target_bitrate = target_bitrate; 292 target_bitrate, max_bitrate, framerate, &configurations_[i]);
|
H A D | simulcast_unittest.h | 149 uint32_t target_bitrate) { 157 encoder->SetRates(target_bitrate, 30); 288 int target_bitrate, 296 stream->targetBitrate = target_bitrate; 147 RunTest(VP8Encoder* encoder, VideoCodec* settings, uint32_t target_bitrate) argument 284 ConfigureStream(int width, int height, int max_bitrate, int min_bitrate, int target_bitrate, SimulcastStream* stream, int num_temporal_layers) argument
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
H A D | remote_bitrate_estimator_single_stream.cc | 178 unsigned int target_bitrate = remote_rate_->UpdateBandwidthEstimate(now_ms); local 183 observer_->OnReceiveBitrateChanged(ssrcs, target_bitrate);
|
H A D | remote_bitrate_estimator_unittest_helper.h | 184 // until it reaches |target_bitrate|. 192 unsigned int target_bitrate);
|
H A D | remote_bitrate_estimator_abs_send_time.cc | 374 unsigned int target_bitrate = remote_rate_.UpdateBandwidthEstimate(now_ms); 377 observer_->OnReceiveBitrateChanged(Keys(ssrcs_), target_bitrate);
|
H A D | remote_bitrate_estimator_unittest_helper.cc | 275 // until it reaches |target_bitrate|. 284 unsigned int target_bitrate) { 299 if (bitrate_update_seen && bitrate_bps > target_bitrate) { 278 SteadyStateRun( unsigned int ssrc, int max_number_of_frames, unsigned int start_bitrate, unsigned int min_bitrate, unsigned int max_bitrate, unsigned int target_bitrate) argument
|
/external/libvpx/libvpx/examples/ |
H A D | vp8_multi_resolution_encoder.c | 362 * (i.e. target_bitrate[0]=0), we skip encoding at that level. 364 unsigned int target_bitrate[NUM_ENCODERS]={1000, 500, 100}; local 400 if(!target_bitrate[i]) 413 target_bitrate[i] = strtol(argv[NUM_ENCODERS + 5 + i], NULL, 0); 478 cfg[0].rc_target_bitrate = target_bitrate[0]; /* Set target bitrate */ 487 cfg[i].rc_target_bitrate = target_bitrate[i];
|
/external/libvpx/libvpx/vp8/common/ |
H A D | onyx.h | 235 unsigned int target_bitrate[VPX_TS_MAX_PERIODICITY]; member in struct:__anon11435
|
/external/webrtc/webrtc/modules/video_coding/include/ |
H A D | video_coding.h | 149 // - target_bitrate : The target bitrate for VCM in bits/s. 157 virtual int32_t SetChannelParameters(uint32_t target_bitrate,
|
/external/webrtc/webrtc/video/ |
H A D | screenshare_loopback.cc | 49 DEFINE_int32(target_bitrate, 2000, "Stream target bitrate in kbps.");
|
H A D | video_loopback.cc | 49 DEFINE_int32(target_bitrate, 800, "Stream target bitrate in kbps.");
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
H A D | rtp_rtcp_impl.cc | 160 unsigned int target_bitrate = 0; local 162 if (remote_bitrate_->LatestEstimate(&ssrcs, &target_bitrate)) { 164 target_bitrate = target_bitrate / ssrcs.size(); 166 rtcp_sender_.SetTargetBitrate(target_bitrate);
|
H A D | rtp_sender.cc | 790 uint32_t target_bitrate = GetTargetBitrate(); local 795 << target_bitrate; 815 if (target_bitrate != 0 && avg_rtt) { 818 (static_cast<size_t>(target_bitrate / 1000) * avg_rtt) >> 3; 833 uint32_t target_bitrate = GetTargetBitrate(); local 837 if (target_bitrate == 0) { 856 return (byte_count * 8) < (target_bitrate / 1000 * time_interval);
|
H A D | rtcp_sender.h | 150 void SetTargetBitrate(unsigned int target_bitrate);
|