HomeSort by relevance Sort by last modified time
    Searched refs:plname (Results 1 - 25 of 49) sorted by null

1 2

  /external/toybox/toys/pending/
host.c 74 char *name, *nsname, rrname[256], plname[640], ptrbuf[64]; local
165 inet_ntop(rrt[type].af, p, plname, sizeof plname);
168 dn_expand(abuf, abuf+alen, p, plname, sizeof plname);
171 snprintf(plname, sizeof plname, "\"%.*s\"", pllen, p);
174 i = dn_expand(abuf, abuf+alen, p, plname, sizeof plname - 1);
175 strcat(plname, " ");
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receive_test_oldapi.cc 29 if (STR_CASE_CMP(codec_param->plname, "CN") == 0 &&
33 if (STR_CASE_CMP(codec_param->plname, "telephone-event") == 0)
56 bool RemapPltypeAndUseThisCodec(const char* plname,
64 if (STR_CASE_CMP(plname, "PCMU") == 0 && plfreq == 8000) {
66 } else if (STR_CASE_CMP(plname, "PCMA") == 0 && plfreq == 8000) {
68 } else if (STR_CASE_CMP(plname, "CN") == 0 && plfreq == 8000) {
70 } else if (STR_CASE_CMP(plname, "CN") == 0 && plfreq == 16000) {
72 } else if (STR_CASE_CMP(plname, "CN") == 0 && plfreq == 32000) {
74 } else if (STR_CASE_CMP(plname, "ILBC") == 0) {
76 } else if (STR_CASE_CMP(plname, "ISAC") == 0 && plfreq == 16000)
    [all...]
acm_codec_database.cc 238 if (STR_CASE_CMP(database_[codec_id].plname, "CN") == 0) {
243 if (STR_CASE_CMP(database_[codec_id].plname, "red") == 0) {
272 if (STR_CASE_CMP("isac", codec_inst.plname) == 0) {
274 } else if (STR_CASE_CMP("ilbc", codec_inst.plname) == 0) {
277 } else if (STR_CASE_CMP("opus", codec_inst.plname) == 0) {
291 return (CodecId(codec_inst.plname, codec_inst.plfreq,
306 name_match = (STR_CASE_CMP(ci.plname, payload_name) == 0);
rent_a_codec.cc 115 if (STR_CASE_CMP(codec_inst.plname, "CN") != 0)
132 if (STR_CASE_CMP(codec_inst.plname, "RED") != 0)
151 if (STR_CASE_CMP(speech_inst.plname, "isac") == 0)
155 if (STR_CASE_CMP(speech_inst.plname, "isac") == 0)
159 if (STR_CASE_CMP(speech_inst.plname, "opus") == 0)
162 if (STR_CASE_CMP(speech_inst.plname, "pcmu") == 0)
164 if (STR_CASE_CMP(speech_inst.plname, "pcma") == 0)
166 if (STR_CASE_CMP(speech_inst.plname, "l16") == 0)
169 if (STR_CASE_CMP(speech_inst.plname, "ilbc") == 0)
173 if (STR_CASE_CMP(speech_inst.plname, "g722") == 0
    [all...]
codec_manager.cc 43 if (!STR_CASE_CMP(send_codec.plname, "telephone-event")) {
53 send_codec.channels, send_codec.plname);
62 !STR_CASE_CMP(codec.plname, "opus") ||
132 memcpy(ci.plname, kName, sizeof(kName));
audio_coding_module.cc 68 codec->plname[0] = '\0';
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
codec_before_streaming_test.cc 35 strcpy(codec_instance_.plname, "SomeInvalidCodecName");
42 strcpy(codec_instance_.plname, "iSAC");
44 strcpy(codec_instance_.plname, "ISAC");
49 strcpy(codec_instance_.plname, "ISAC");
65 strcpy(codec_instance_.plname, "iLBC");
codec_test.cc 36 if (!_stricmp(codec_instance->plname, "ilbc")) {
58 EXPECT_STRCASEEQ("PCMU", codec_instance_.plname);
143 if (_stricmp("opus", codec_instance_.plname)) {
159 if (_stricmp("opus", codec_instance_.plname)) {
171 if (!_stricmp("opus", codec_instance_.plname)) {
207 if (IsNotViableSendCodec(codec_instance_.plname)) {
208 TEST_LOG("Skipping %s.\n", codec_instance_.plname);
216 codec_instance_.plname, codec_instance_.pltype,
dtmf_test.cc 65 if (!_stricmp("telephone-event", codec_instance.plname)) {
  /external/webrtc/webrtc/voice_engine/
voe_codec_unittest.cc 67 if (!STR_CASE_CMP(my_codec.plname, "isac") && my_codec.plfreq == 16000) {
70 } else if (!STR_CASE_CMP(my_codec.plname, "isac") &&
74 } else if (!STR_CASE_CMP(my_codec.plname, "L16") &&
78 } else if (!STR_CASE_CMP(my_codec.plname, "RED")) {
109 strncpy(codec1.plname, "isac", 4);
127 strncpy(codec2.plname, "ISAC", 4);
output_mixer.cc 306 else if((STR_CASE_CMP(codecInst->plname,"L16") == 0) ||
307 (STR_CASE_CMP(codecInst->plname,"PCMU") == 0) ||
308 (STR_CASE_CMP(codecInst->plname,"PCMA") == 0))
386 else if((STR_CASE_CMP(codecInst->plname,"L16") == 0) ||
387 (STR_CASE_CMP(codecInst->plname,"PCMU") == 0) ||
388 (STR_CASE_CMP(codecInst->plname,"PCMA") == 0))
voe_codec_impl.cc 67 "codec: plname=%s, pacsize=%d, plfreq=%d, pltype=%d, "
69 codec.plname, codec.pacsize, codec.plfreq, codec.pltype,
76 if ((STR_CASE_CMP(codec.plname, "L16") == 0) && (codec.pacsize >= 960)) {
81 if (!STR_CASE_CMP(codec.plname, "CN") ||
82 !STR_CASE_CMP(codec.plname, "TELEPHONE-EVENT") ||
83 !STR_CASE_CMP(codec.plname, "RED")) {
165 "codec: plname=%s, plfreq=%d, pltype=%d, channels=%" PRIuS ", "
167 codec.plname, codec.plfreq, codec.pltype, codec.channels,
  /external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_audio.cc 183 memcpy(voice_codec.plname, "PCMU", 5);
187 voice_codec.plname,
195 voice_codec.plname,
216 memcpy(voice_codec.plname, "PCMU", 5);
220 voice_codec.plname,
228 voice_codec.plname,
240 memcpy(voice_codec.plname, "RED", 4);
247 voice_codec.plname,
253 voice_codec.plname,
289 memcpy(voice_codec.plname, "PCMU", 5)
    [all...]
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
before_streaming_fixture.cc 74 _snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE - 1, "PCMU");
76 snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE, "PCMU");
  /external/webrtc/webrtc/modules/media_file/
media_file_utility.cc 269 strcpy(codec_info_.plname, "PCMA");
275 strcpy(codec_info_.plname, "PCMU");
284 strcpy(codec_info_.plname, "L16");
289 strcpy(codec_info_.plname, "L16");
294 strcpy(codec_info_.plname, "L16");
301 strcpy(codec_info_.plname, "L16");
308 strcpy(codec_info_.plname, "L16");
315 strcpy(codec_info_.plname, "L16");
322 strcpy(codec_info_.plname, "L16");
668 if(STR_CASE_CMP(codecInst.plname, "PCMU") == 0
    [all...]
media_file_impl.cc 52 codec_info_.plname[0] = '\0';
580 codec_info_.plname[0] = '\0';
663 if(bytesWritten > 0 && STR_NCASE_CMP(codec_info_.plname,
907 if((STR_NCASE_CMP(tmpAudioCodec.plname, "L16", 4) != 0) &&
908 (STR_NCASE_CMP(tmpAudioCodec.plname, "PCMU", 5) != 0) &&
909 (STR_NCASE_CMP(tmpAudioCodec.plname, "PCMA", 5) != 0))
967 codec_info_.plname[0] = '\0';
1065 if (codec_info_.pltype == 0 && codec_info_.plname[0] == '\0')
  /external/webrtc/webrtc/modules/utility/source/
file_recorder_impl.cc 195 STR_CASE_CMP(codec_info_.plname, "L16") != 0)
201 << codec_info_.plname
234 STR_CASE_CMP(codec_info_.plname, "L16") != 0)
239 << codec_info_.plname << " not supported.";
file_player_impl.cc 110 if(STR_CASE_CMP(_codec.plname, "L16") == 0)
217 strncpy(codecInstL16.plname,"L16",32);
298 strncpy(codecInstL16.plname,"L16",32);
391 if( STR_CASE_CMP(_codec.plname, "L16") != 0 &&
394 LOG(LS_WARNING) << "SetUpAudioDecoder() codec " << _codec.plname
  /external/webrtc/webrtc/modules/audio_coding/test/
EncodeDecodeTest.cc 80 printf("%d %s\n", n, sendCodec.plname);
137 if (!strcmp(recvCodec.plname, "opus")) {
285 if (STR_CASE_CMP(sendCodecTmp.plname, "telephone-event") == 0) {
287 } else if (STR_CASE_CMP(sendCodecTmp.plname, "cn") == 0) {
289 } else if (STR_CASE_CMP(sendCodecTmp.plname, "red") == 0) {
APITest.cc 134 if ((STR_CASE_CMP(dummyCodec.plname, "CN") == 0)
139 printf("Register Receive Codec %s ", dummyCodec.plname);
141 if ((n != 0) && !FixedPayloadTypeCodec(dummyCodec.plname)) {
149 if ((n < numCodecs - 1) && !FixedPayloadTypeCodec(dummyCodec.plname)) {
155 if (!FixedPayloadTypeCodec(nextCodec.plname)) {
161 if ((n < numCodecs - 1) && !FixedPayloadTypeCodec(dummyCodec.plname)) {
166 if (!FixedPayloadTypeCodec(nextCodec.plname)) {
177 if (!strcmp(dummyCodec.plname, "CN")) {
837 if (!FixedPayloadTypeCodec(myCodec->plname)) {
1002 fprintf(stdout, "Name................. %s\n", myCodec->plname);
    [all...]
delay_test.cc 102 if (STR_CASE_CMP(my_codec_param.plname, "opus") == 0)
106 if (STR_CASE_CMP(my_codec_param.plname, "CN") == 0 &&
109 if (STR_CASE_CMP(my_codec_param.plname, "telephone-event") == 0)
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine_unittest.cc 487 rtc::strcpyn(gcodec.plname, arraysize(gcodec.plname), "ISAC");
492 EXPECT_STREQ("ISAC", gcodec.plname);
493 rtc::strcpyn(gcodec.plname, arraysize(gcodec.plname), "telephone-event");
497 EXPECT_STREQ("telephone-event", gcodec.plname);
535 EXPECT_STREQ("opus", opus.plname);
558 EXPECT_STREQ("opus", opus.plname);
580 EXPECT_STREQ("opus", opus.plname);
600 rtc::strcpyn(gcodec.plname, arraysize(gcodec.plname), "ISAC")
    [all...]
fakewebrtcvoiceengine.h 404 if (_stricmp(codec.plname, "telephone-event") == 0 ||
405 _stricmp(codec.plname, "audio/telephone-event") == 0 ||
406 _stricmp(codec.plname, "CN") == 0 ||
407 _stricmp(codec.plname, "red") == 0 ) {
432 _stricmp(it->plname, codec.plname) != 0) {
441 if (strcmp(it->plname, codec.plname) == 0 &&
465 if (strcmp(it->plname, codec.plname) == 0 &
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.cc 135 webrtc::RtpVideoCodecTypes ConvertCodecType(const char* plname) {
136 if (strncmp(plname, "VP8", 3) == 0) {
  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_cpu_test.cc 58 strcpy(isac.plname, "ISAC");

Completed in 518 milliseconds

1 2