Searched defs:voice_codec (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/test/testAPI/
H A Dtest_api_audio.cc179 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
212 CodecInst voice_codec; local
285 CodecInst voice_codec; local
[all...]
H A Dtest_api_rtcp.cc139 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
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_rtcp_impl.cc243 const CodecInst& voice_codec) {
245 voice_codec.plname,
246 voice_codec.pltype,
247 voice_codec.plfreq,
248 voice_codec.channels,
249 (voice_codec.rate < 0) ? 0 : voice_codec.rate);
242 RegisterSendPayload( const CodecInst& voice_codec) argument

Completed in 84 milliseconds