HomeSort by relevance Sort by last modified time
    Searched defs:codec_inst (Results 1 - 6 of 6) sorted by null

  /external/webrtc/webrtc/audio/
audio_receive_stream.cc 197 webrtc::CodecInst codec_inst = {0}; local
198 if (codec->GetRecCodec(config_.voe_channel_id, codec_inst) == -1) {
207 if (codec_inst.pltype != -1) {
208 stats.codec_name = codec_inst.plname;
211 if (codec_inst.plfreq / 1000 > 0) {
212 stats.jitter_ms = call_stats.jitterSamples / (codec_inst.plfreq / 1000);
audio_send_stream.cc 145 webrtc::CodecInst codec_inst = {0}; local
146 if (codec->GetSendCodec(config_.voe_channel_id, codec_inst) != -1) {
147 RTC_DCHECK_NE(codec_inst.pltype, -1);
148 stats.codec_name = codec_inst.plname;
158 if (codec_inst.plfreq / 1000 > 0) {
160 block.interarrival_jitter / (codec_inst.plfreq / 1000);
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec_unittest.cc 143 CodecInst codec_inst = kDefaultCodecInst; local
144 codec_inst.pacsize = kPacketSizeSamples;
145 param.speech_encoder = rac.RentEncoder(codec_inst);
207 const CodecInst codec_inst = { local
210 EXPECT_FALSE(rent_a_codec.RentEncoder(codec_inst));
acm_receiver_unittest_oldapi.cc 43 const auto codec_inst = RentACodec::CodecInstById(codec_id); local
44 EXPECT_TRUE(codec_inst);
45 inst = *codec_inst;
audio_coding_module_unittest_oldapi.cc 1631 CodecInst codec_inst; local
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine_unittest.cc 440 webrtc::CodecInst codec_inst; local
442 EXPECT_TRUE(cricket::WebRtcVoiceEngine::ToCodecInst(kPcmuCodec, &codec_inst));
444 EXPECT_TRUE(cricket::WebRtcVoiceEngine::ToCodecInst(kIsacCodec, &codec_inst));
447 &codec_inst));
451 EXPECT_TRUE(cricket::WebRtcVoiceEngine::ToCodecInst(codec, &codec_inst));
452 EXPECT_EQ(codec.id, codec_inst.pltype);
456 EXPECT_TRUE(cricket::WebRtcVoiceEngine::ToCodecInst(codec, &codec_inst));
457 EXPECT_EQ(codec.id, codec_inst.pltype);
458 EXPECT_EQ(8000, codec_inst.plfreq);
462 EXPECT_TRUE(cricket::WebRtcVoiceEngine::ToCodecInst(codec, &codec_inst));
    [all...]

Completed in 2928 milliseconds