Home
last modified time | relevance | path

Searched refs:ReceiveCodec (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
Dvideo_coding_impl.cc224 int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const override { in ReceiveCodec() function in webrtc::__anonc28a8fb60111::VideoCodingModuleImpl
225 return receiver_.ReceiveCodec(currentReceiveCodec); in ReceiveCodec()
228 VideoCodecType ReceiveCodec() const override { in ReceiveCodec() function in webrtc::__anonc28a8fb60111::VideoCodingModuleImpl
229 return receiver_.ReceiveCodec(); in ReceiveCodec()
Dcodec_database.h103 bool ReceiveCodec(VideoCodec* current_receive_codec) const;
106 VideoCodecType ReceiveCodec() const;
Dvideo_receiver.cc418 int32_t VideoReceiver::ReceiveCodec(VideoCodec* currentReceiveCodec) const { in ReceiveCodec() function in webrtc::vcm::VideoReceiver
423 return _codecDataBase.ReceiveCodec(currentReceiveCodec) ? 0 : -1; in ReceiveCodec()
427 VideoCodecType VideoReceiver::ReceiveCodec() const { in ReceiveCodec() function in webrtc::vcm::VideoReceiver
429 return _codecDataBase.ReceiveCodec(); in ReceiveCodec()
Dvideo_coding_impl.h153 int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const;
154 VideoCodecType ReceiveCodec() const;
Dcodec_database.cc462 bool VCMCodecDataBase::ReceiveCodec(VideoCodec* current_receive_codec) const { in ReceiveCodec() function in webrtc::VCMCodecDataBase
471 VideoCodecType VCMCodecDataBase::ReceiveCodec() const { in ReceiveCodec() function in webrtc::VCMCodecDataBase
/external/webrtc/webrtc/modules/video_coding/include/
Dvideo_coding.h400 virtual int32_t ReceiveCodec(VideoCodec* currentReceiveCodec) const = 0;
407 virtual VideoCodecType ReceiveCodec() const = 0;
/external/webrtc/webrtc/modules/audio_coding/test/
DiSACTest.cc133 EXPECT_EQ(0, _acmA->ReceiveCodec(&receiveCodec)); in Setup()
134 EXPECT_EQ(0, _acmB->ReceiveCodec(&receiveCodec)); in Setup()
DTestAllCodecs.cc485 acm_b_->ReceiveCodec(&my_codec_param); in DisplaySendReceiveCodec()
DTestStereo.cc838 acm_b_->ReceiveCodec(&receive_codec); in DisplaySendReceiveCodec()
/external/webrtc/webrtc/modules/audio_coding/include/
Daudio_coding_module.h513 virtual int32_t ReceiveCodec(CodecInst* curr_receive_codec) const = 0;
/external/webrtc/webrtc/modules/audio_coding/acm2/
Daudio_coding_module_impl.h131 int ReceiveCodec(CodecInst* current_codec) const override;
Daudio_coding_module_impl.cc647 int AudioCodingModuleImpl::ReceiveCodec(CodecInst* current_codec) const { in ReceiveCodec() function in webrtc::acm2::AudioCodingModuleImpl
/external/webrtc/webrtc/voice_engine/
Dchannel.cc1386 return (audio_coding_->ReceiveCodec(&codec)); in GetRecCodec()
4050 if (audio_coding_->ReceiveCodec(&current_recive_codec) == 0) { in GetPlayoutFrequency()