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

  /external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_audio.cc 179 CodecInst voice_codec; local
180 memset(&voice_codec, 0, sizeof(voice_codec));
181 voice_codec.pltype = 96;
182 voice_codec.plfreq = 8000;
183 memcpy(voice_codec.plname, "PCMU", 5);
185 EXPECT_EQ(0, module1->RegisterSendPayload(voice_codec));
187 voice_codec.plname,
188 voice_codec.pltype,
189 voice_codec.plfreq
212 CodecInst voice_codec; local
285 CodecInst voice_codec; local
    [all...]
test_api_rtcp.cc 139 CodecInst voice_codec; local
140 voice_codec.pltype = 96;
141 voice_codec.plfreq = 8000;
142 voice_codec.rate = 64000;
143 memcpy(voice_codec.plname, "PCMU", 5);
145 EXPECT_EQ(0, module1->RegisterSendPayload(voice_codec));
147 voice_codec.plname,
148 voice_codec.pltype,
149 voice_codec.plfreq,
150 voice_codec.channels
    [all...]

Completed in 56 milliseconds