Searched defs:videoChannel (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dtb_video_channel.h43 int videoChannel; member in class:TbVideoChannel
/external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
H A DVideoDecodeEncodeObserver.java14 void incomingRate(int videoChannel, int framerate, int bitrate); argument
19 void incomingCodecChanged(int videoChannel, VideoCodecInst videoCodec); argument
21 void requestNewKeyFrame(int videoChannel); argument
23 void outgoingRate(int videoChannel, int framerate, int bitrate); argument
H A DVideoEngine.java68 public native int connectAudioChannel(int videoChannel, int voiceChannel); argument
H A DMediaEngine.java124 private int videoChannel; field in class:MediaEngine
165 videoChannel = vie.createChannel();
167 check(vie.connectAudioChannel(videoChannel, audioChannel) == 0,
181 check(vie.setKeyFrameRequestMethod(videoChannel,
185 check(vie.registerObserver(videoChannel, this) == 0,
220 check(vie.deregisterObserver(videoChannel) == 0,
223 check(vie.deRegisterExternalReceiveCodec(videoChannel,
228 check(vie.deleteChannel(videoChannel) == 0, "DeleteChannel");
417 check(voe.stopRtpDump(videoChannel,
423 check(voe.startRtpDump(videoChannel, debugDirector
664 incomingRate(int videoChannel, int framerate, int bitrate) argument
670 incomingCodecChanged(int videoChannel, VideoCodecInst videoCodec) argument
678 requestNewKeyFrame(int videoChannel) argument
680 outgoingRate(int videoChannel, int framerate, int bitrate) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
H A Dtb_capture_device.cc73 void TbCaptureDevice::ConnectTo(int videoChannel) argument
75 EXPECT_EQ(0, ViE.capture->ConnectCaptureDevice(captureId, videoChannel));
78 void TbCaptureDevice::Disconnect(int videoChannel) argument
80 EXPECT_EQ(0, ViE.capture->DisconnectCaptureDevice(videoChannel));
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_loopback.cc106 int videoChannel = -1; local
107 error = ptrViEBase->CreateChannel(videoChannel);
182 error = ptrViECapture->ConnectCaptureDevice(captureId, videoChannel);
200 error = ptrViERtpRtcp->SetRTCPStatus(videoChannel,
209 videoChannel, webrtc::kViEKeyFrameRequestPliRtcp);
216 error = ptrViERtpRtcp->SetRembStatus(videoChannel, true, true);
225 error = ptrViERtpRtcp->SetLocalSSRC(videoChannel, kSsrc);
231 error = ptrViERtpRtcp->SetLocalSSRC(videoChannel, kRtxSsrc,
238 error = ptrViERtpRtcp->SetRemoteSSRCType(videoChannel,
247 error = ptrViERtpRtcp->SetRtxSendPayloadType(videoChannel, kRtxPayloadTyp
[all...]
H A Dvie_autotest_record.cc131 int videoChannel = -1; local
132 error = ptrViEBase->CreateChannel(videoChannel);
238 error = ptrViECapture->ConnectCaptureDevice(captureId, videoChannel);
260 error = ptrViERtpRtcp->SetRTCPStatus(videoChannel,
268 videoChannel, webrtc::kViEKeyFrameRequestPliRtcp);
274 error = ptrViERtpRtcp->SetRembStatus(videoChannel, true, true);
301 error = ptrViERender->AddRenderer(videoChannel, window2, 1, 0.0, 0.0, 1.0,
308 error = ptrViERender->StartRender(videoChannel);
347 error = ptrViECodec->SetSendCodec(videoChannel, videoCodec);
363 new webrtc::test::VideoChannelTransport(ptrViENetwork, videoChannel);
[all...]
H A Dvie_autotest_rtp_rtcp.cc33 virtual void IncomingSSRCChanged(const int videoChannel, argument
37 virtual void IncomingCSRCChanged(const int videoChannel, argument
68 const int videoChannel, const unsigned char subType,
72 _channel = videoChannel;
102 tbCapture.ConnectTo(tbChannel.videoChannel);
105 TbExternalTransport myTransport(*(ViE.network), tbChannel.videoChannel,
108 ViE.network->DeregisterSendTransport(tbChannel.videoChannel);
110 tbChannel.videoChannel, myTransport));
118 tbChannel.videoChannel, startSequenceNumber));
121 EXPECT_EQ(0, ViE.rtp_rtcp->SetLocalSSRC(tbChannel.videoChannel, kVideoSsr
67 OnApplicationDataReceived( const int videoChannel, const unsigned char subType, const unsigned int name, const char* data, const unsigned short dataLengthInBytes) argument
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_rtp_rtcp_impl.cc128 int ViERTP_RTCPImpl::SetRemoteSSRCType(const int videoChannel, argument
131 LOG_F(LS_INFO) << "channel: " << videoChannel
136 ViEChannel* ptrViEChannel = cs.Channel(videoChannel);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine.cc334 virtual void IncomingCodecChanged(const int videoChannel, argument
336 virtual void IncomingRate(const int videoChannel, argument
340 ASSERT(video_channel_ == videoChannel);
362 virtual void RequestNewKeyFrame(const int videoChannel) {} argument
401 virtual void OutgoingRate(const int videoChannel, argument
405 ASSERT(video_channel_ == videoChannel);

Completed in 254 milliseconds