Home
last modified time | relevance | path

Searched refs:threshold_bps (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dvideo_sender.cc336 int threshold_bps; in SuspendBelowMinBitrate() local
338 threshold_bps = current_codec_.minBitrate * 1000; in SuspendBelowMinBitrate()
340 threshold_bps = current_codec_.simulcastStream[0].minBitrate * 1000; in SuspendBelowMinBitrate()
344 int window_bps = std::max(threshold_bps / 10, 10000); in SuspendBelowMinBitrate()
345 _mediaOpt.SuspendBelowMinBitrate(threshold_bps, window_bps); in SuspendBelowMinBitrate()
Dmedia_optimization.cc401 void MediaOptimization::SuspendBelowMinBitrate(int threshold_bps, in SuspendBelowMinBitrate() argument
404 assert(threshold_bps > 0 && window_bps >= 0); in SuspendBelowMinBitrate()
405 suspension_threshold_bps_ = threshold_bps; in SuspendBelowMinBitrate()
Dmedia_optimization.h72 void SuspendBelowMinBitrate(int threshold_bps, int window_bps);