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

  /external/webrtc/webrtc/modules/video_coding/
codec_database.h 64 bool SendCodec(VideoCodec* current_send_codec) const;
68 VideoCodecType SendCodec() const;
codec_database.cc 271 bool VCMCodecDataBase::SendCodec(VideoCodec* current_send_codec) const {
279 VideoCodecType VCMCodecDataBase::SendCodec() const {
  /external/webrtc/webrtc/modules/audio_coding/test/
iSACTest.cc 50 auto sendCodec = acm->SendCodec();
51 EXPECT_TRUE(sendCodec);
54 sendCodec->rate = -1;
55 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec));
58 sendCodec->rate = isacConfig.currentRateBitPerSec;
61 sendCodec->pacsize = isacConfig.currentFrameSizeMsec
62 * (sendCodec->plfreq / 1000);
64 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec));
254 EXPECT_TRUE(_acmA->SendCodec());
    [all...]
PacketLossTest.cc 146 if (acm->SendCodec()) {
delay_test.cc 140 SendCodec(config.codec);
145 void SendCodec(const CodecSettings& config) {
TwoWayCommunication.cc 253 auto codecInst_B = _acmB->SendCodec();
287 EXPECT_TRUE(_acmB->SendCodec());
TestVADDTX.cc 217 auto codec_param = acm_send_->SendCodec();
EncodeDecodeTest.cc 56 struct CodecInst sendCodec;
79 EXPECT_EQ(0, acm->Codec(n, &sendCodec));
80 printf("%d %s\n", n, sendCodec.plname);
86 EXPECT_EQ(0, acm->Codec(codecNo, &sendCodec));
88 sendCodec.channels = channels;
90 EXPECT_EQ(0, acm->RegisterSendCodec(sendCodec));
91 _packetization = new TestPacketization(rtpStream, sendCodec.plfreq);
346 if (acm->SendCodec()) {
TestAllCodecs.cc 484 printf("%s -> ", acm_a_->SendCodec()->plname);
APITest.cc 816 auto myCodec = sendACM->SendCodec();
996 auto myCodec = (side == 'A' ? _acmA : _acmB)->SendCodec();
TestStereo.cc 832 auto send_codec = acm_a_->SendCodec();
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 211 // int32_t SendCodec()
217 virtual rtc::Optional<CodecInst> SendCodec() const = 0;
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_impl.h 51 rtc::Optional<CodecInst> SendCodec() const override;
acm_receiver_unittest_oldapi.cc 94 auto current_codec = acm_->SendCodec();
audio_coding_module_impl.cc 227 rtc::Optional<CodecInst> AudioCodingModuleImpl::SendCodec() const {
  /external/webrtc/webrtc/voice_engine/
channel.cc     [all...]

Completed in 316 milliseconds