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

  /external/webrtc/webrtc/modules/audio_coding/acm2/
codec_manager_unittest.cc 40 EXPECT_CALL(*enc0, SetFec(false)).WillOnce(Return(true));
42 EXPECT_CALL(*enc0, SetFec(true)).WillOnce(Return(true));
43 EXPECT_CALL(*enc1, SetFec(true)).WillOnce(Return(true));
44 EXPECT_CALL(*enc1, SetFec(false)).WillOnce(Return(true));
46 EXPECT_CALL(*enc0, SetFec(false)).WillOnce(Return(true));
rent_a_codec_unittest.cc 110 EXPECT_CALL(external_encoder, SetFec(false)).WillRepeatedly(Return(true));
168 EXPECT_CALL(speech_encoder, SetFec(false)).WillRepeatedly(Return(true));
rent_a_codec.cc 259 if (!param->speech_encoder->SetFec(true))
263 const bool success = param->speech_encoder->SetFec(false);
audio_coding_module_unittest_oldapi.cc     [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/
audio_encoder.cc 40 bool AudioEncoder::SetFec(bool enable) {
audio_encoder.h 112 virtual bool SetFec(bool enable);
  /external/webrtc/webrtc/modules/audio_coding/codecs/mock/
mock_audio_encoder.h 39 MOCK_METHOD1(SetFec, bool(bool enable));
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red.h 51 bool SetFec(bool enable) override;
audio_encoder_copy_red.cc 99 bool AudioEncoderCopyRed::SetFec(bool enable) {
100 return speech_encoder_->SetFec(enable);
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
audio_encoder_opus.h 70 bool SetFec(bool enable) override;
audio_encoder_opus.cc 167 bool AudioEncoderOpus::SetFec(bool enable) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/cng/
audio_encoder_cng.h 64 bool SetFec(bool enable) override;
audio_encoder_cng.cc 179 bool AudioEncoderCng::SetFec(bool enable) {
180 return speech_encoder_->SetFec(enable);

Completed in 104 milliseconds