Home
last modified time | relevance | path

Searched refs:_selectedMethod (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/modules/video_coding/
Dmedia_opt_util.cc520 if (_selectedMethod && _selectedMethod->Type() == newMethodType) in SetMethod()
525 _selectedMethod.reset(new VCMNackMethod()); in SetMethod()
528 _selectedMethod.reset(new VCMFecMethod()); in SetMethod()
531 _selectedMethod.reset(new VCMNackFecMethod(kLowRttNackMs, -1)); in SetMethod()
534 _selectedMethod.reset(); in SetMethod()
660 if (!_selectedMethod) in UpdateMethod()
674 return _selectedMethod->UpdateParameters(&_currentParameters); in UpdateMethod()
678 return _selectedMethod.get(); in SelectedMethod()
682 return _selectedMethod ? _selectedMethod->Type() : kNone; in SelectedType()
701 _selectedMethod.reset(); in Release()
Dmedia_opt_util.h325 std::unique_ptr<VCMProtectionMethod> _selectedMethod; variable