/external/webrtc/webrtc/voice_engine/test/auto_test/ |
voe_cpu_test.cc | 55 CodecInst isac; local 57 isac.pltype = 104; 58 strcpy(isac.plname, "ISAC"); 59 isac.pacsize = 960; 60 isac.plfreq = 32000; 61 isac.channels = 1; 62 isac.rate = -1; 73 CHECK(codec->SetRecPayloadType(channel, isac)); 74 CHECK(codec->SetSendCodec(channel, isac)); [all...] |
/external/webrtc/webrtc/test/ |
call_test.cc | 273 CodecInst isac = {kAudioSendPayloadType, "ISAC", 16000, 480, 1, 32000}; local 274 EXPECT_EQ(0, voe_send_.codec->SetSendCodec(voe_send_.channel_id, isac));
|
/external/webrtc/webrtc/call/ |
call_perf_tests.cc | 296 CodecInst isac = {103, "ISAC", 16000, 480, 1, 32000}; local 297 EXPECT_EQ(0, voe_codec->SetSendCodec(send_channel_id, isac));
|
/external/webrtc/talk/app/webrtc/ |
webrtcsdp_unittest.cc | 166 "a=rtpmap:103 ISAC/16000\r\n" 167 "a=rtpmap:104 ISAC/32000\r\n" 234 "a=rtpmap:103 ISAC/16000\r\n" 235 "a=rtpmap:104 ISAC/32000\r\n" 557 audio_desc_->AddCodec(AudioCodec(103, "ISAC", 16000, 32000, 1, 2)); 558 audio_desc_->AddCodec(AudioCodec(104, "ISAC", 32000, 56000, 1, 1)); 1883 cricket::AudioCodec isac = audio->codecs()[1]; local [all...] |