Searched refs:audio_channel (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
D | acm_generic_codec.cc | 101 const uint8_t audio_channel) { in Add10MsData() argument 103 return Add10MsDataSafe(timestamp, data, length_smpl, audio_channel); in Add10MsData() 109 const uint8_t audio_channel) { in Add10MsDataSafe() argument 125 if ((in_audio_ix_write_ >= length_smpl * audio_channel) && in Add10MsDataSafe() 127 in_audio_ix_write_ -= length_smpl * audio_channel; in Add10MsDataSafe() 145 if ((in_audio_ix_write_ + length_smpl * audio_channel) > in Add10MsDataSafe() 148 int16_t missed_samples = in_audio_ix_write_ + length_smpl * audio_channel - in Add10MsDataSafe() 153 (AUDIO_BUFFER_SIZE_W16 - length_smpl * audio_channel) * in Add10MsDataSafe() 157 memcpy(in_audio_ + (AUDIO_BUFFER_SIZE_W16 - length_smpl * audio_channel), in Add10MsDataSafe() 158 data, length_smpl * audio_channel * sizeof(int16_t)); in Add10MsDataSafe() [all …]
|
D | acm_g722.cc | 98 const uint8_t audio_channel) { 100 (timestamp >> 1), data, length_smpl, audio_channel);
|
D | acm_g722.h | 46 const uint8_t audio_channel)
|
D | acm_generic_codec.h | 180 const uint8_t audio_channel); 619 const uint8_t audio_channel)
|
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/ |
D | vie_autotest_base.cc | 185 int audio_channel = -1; in ViEBaseAPITest() local 194 audio_channel = voe_base->CreateChannel(); in ViEBaseAPITest() 195 EXPECT_NE(-1, audio_channel); in ViEBaseAPITest() 198 EXPECT_NE(0, vie_base->ConnectAudioChannel(video_channel, audio_channel)) in ViEBaseAPITest() 203 EXPECT_EQ(0, vie_base->ConnectAudioChannel(video_channel, audio_channel)); in ViEBaseAPITest()
|
D | vie_autotest_record.cc | 64 int audio_channel = -1; in VideoEngineSampleRecordCode() local 157 audio_channel = voe_base->CreateChannel(); in VideoEngineSampleRecordCode() 161 new webrtc::test::VoiceChannelTransport(voe_network, audio_channel)); in VideoEngineSampleRecordCode() 168 voe_codec->SetSendCodec(audio_channel, audio_codec); in VideoEngineSampleRecordCode() 424 error = voe_base->StartSend(audio_channel); in VideoEngineSampleRecordCode() 436 ptrVoERtpRtcp->StartRTPDump(audio_channel, in VideoEngineSampleRecordCode() 459 ptrVoERtpRtcp->StopRTPDump(audio_channel, webrtc::kRtpOutgoing); in VideoEngineSampleRecordCode() 478 error = voe_base->StopSend(audio_channel); in VideoEngineSampleRecordCode()
|
D | vie_autotest_custom_call.cc | 281 int audio_channel = -1; in ViECustomCall() local 359 audio_channel = voe_base->CreateChannel(); in ViECustomCall() 362 new webrtc::test::VoiceChannelTransport(voe_network, audio_channel)); in ViECustomCall() 385 error = voe_codec->SetSendCodec(audio_channel, audio_codec); in ViECustomCall() 422 error = vie_base->ConnectAudioChannel(video_channel, audio_channel); in ViECustomCall() 535 error = voe_base->StartReceive(audio_channel); in ViECustomCall() 540 error = voe_base->StartPlayout(audio_channel); in ViECustomCall() 545 error = voe_base->StartSend(audio_channel); in ViECustomCall() 822 error = voe_base->StopReceive(audio_channel); in ViECustomCall() 827 error = voe_base->StopPlayout(audio_channel); in ViECustomCall() [all …]
|
D | vie_autotest_rtp_rtcp.cc | 997 int audio_channel = voe_base->CreateChannel(); in ViERtpRtcpAPITest() local 998 EXPECT_NE(-1, audio_channel); in ViERtpRtcpAPITest() 1001 audio_channel)); in ViERtpRtcpAPITest() 1022 EXPECT_EQ(0, voe_base->DeleteChannel(audio_channel)); in ViERtpRtcpAPITest()
|
/external/chromium_org/third_party/webrtc/video_engine/ |
D | vie_base_impl.cc | 210 const int audio_channel) { in ConnectAudioChannel() argument 212 << ", audio channel " << audio_channel; in ConnectAudioChannel() 220 audio_channel) != 0) { in ConnectAudioChannel()
|
D | vie_base_impl.h | 51 const int audio_channel);
|
/external/chromium_org/third_party/webrtc/video_engine/include/ |
D | vie_base.h | 208 const int audio_channel) = 0;
|
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/ |
D | video_engine_jni.cc | 409 jint video_channel, jint audio_channel)) { in JOWW() argument 411 return vie_data->base->ConnectAudioChannel(video_channel, audio_channel); in JOWW()
|