HomeSort by relevance Sort by last modified time
    Searched defs:video_channel (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_file_based_comparison_tests.cc 32 int video_channel = -1; local
33 EXPECT_EQ(0, interfaces.base->CreateChannel(video_channel));
49 capture_id, video_channel));
51 ConfigureRtpRtcp(interfaces.rtp_rtcp, kNack, video_channel);
56 RenderToFile(render_interface, video_channel, remote_file_renderer);
62 EXPECT_EQ(0, image_process->RegisterSendEffectFilter(video_channel,
70 video_channel, device_name);
72 EXPECT_EQ(0, render_interface->StopRender(video_channel));
73 EXPECT_EQ(0, render_interface->RemoveRenderer(video_channel));
75 interfaces.capture->DisconnectCaptureDevice(video_channel);
108 int video_channel = -1; local
    [all...]
vie_autotest_base.cc 29 int video_channel = -1; local
30 EXPECT_EQ(0, interfaces.base->CreateChannel(video_channel));
53 video_channel));
56 ConfigureRtpRtcp(interfaces.rtp_rtcp, kNack, video_channel);
62 RenderInWindow(render_interface, video_channel, _window2, 1);
71 video_channel, device_name);
77 EXPECT_EQ(0, base_interface->StopReceive(video_channel));
79 EXPECT_EQ(0, render_interface->StopRender(video_channel));
80 EXPECT_EQ(0, render_interface->RemoveRenderer(video_channel));
91 EXPECT_EQ(0, base_interface->DeleteChannel(video_channel));
133 int video_channel = -1; local
    [all...]
vie_autotest_simulcast.cc 148 int video_channel = -1; local
149 error = vie_base->CreateChannel(video_channel);
157 error = vie_base->CreateReceiveChannel(receive_channels[i], video_channel);
224 error = vie_capture->ConnectCaptureDevice(capture_id, video_channel);
237 error = vie_rtp_rtcp->SetRTCPStatus(video_channel,
244 vie_rtp_rtcp->SetRembStatus(video_channel, true, false);
251 video_channel, webrtc::kViEKeyFrameRequestPliRtcp);
299 int channel_to_render = video_channel;
378 error = vie_codec->SetSendCodec(video_channel, video_codec);
394 error = vie_rtp_rtcp->SetLocalSSRC(video_channel, idx + 1, // SSR
    [all...]
vie_autotest_codec.cc 66 virtual void IncomingCodecChanged(const int video_channel,
76 virtual void IncomingRate(const int video_channel,
95 virtual void OutgoingRate(const int video_channel,
103 virtual void SuspendChange(int video_channel, bool is_suspended) OVERRIDE {
107 virtual void RequestNewKeyFrame(const int video_channel) {
152 int video_channel = -1; local
153 EXPECT_EQ(0, base->CreateChannel(video_channel));
154 EXPECT_EQ(0, capture->ConnectCaptureDevice(capture_id, video_channel));
156 video_channel, webrtc::kRtcpCompound_RFC4585));
159 video_channel, webrtc::kViEKeyFrameRequestPliRtcp))
309 int video_channel = -1; local
492 int video_channel = -1; local
    [all...]
vie_autotest_custom_call.cc 69 void OutgoingRate(const int video_channel,
76 virtual void SuspendChange(int video_channel, bool is_suspended) OVERRIDE {
86 void IncomingRate(const int video_channel,
109 void IncomingCodecChanged(const int video_channel,
111 void RequestNewKeyFrame(const int video_channel) {
137 int video_channel,
140 int video_channel);
142 int video_channel);
144 int video_channel,
147 int video_channel);
272 int video_channel = -1; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediarecorder.h 99 bool video_channel; member in struct:cricket::MediaRecorder::SinkPair
106 bool video_channel,
mediarecorder.cc 137 bool video_channel,
151 sink_pair->video_channel = video_channel;
200 if (sink_pair->video_channel &&
203 VideoChannel* video_channel = static_cast<VideoChannel*>(channel); local
205 video_channel->SendIntraFrame();
208 video_channel->RequestIntraFrame();
channelmanager_unittest.cc 139 cricket::VideoChannel* video_channel = local
142 EXPECT_TRUE(video_channel != NULL);
147 cm_->DestroyVideoChannel(video_channel);
163 cricket::VideoChannel* video_channel = local
166 EXPECT_TRUE(video_channel != NULL);
171 cm_->DestroyVideoChannel(video_channel);
190 cricket::VideoChannel* video_channel = local
193 EXPECT_TRUE(video_channel == NULL);
call.h 276 VideoChannel* video_channel; member in struct:cricket::Call::MediaSession
call.cc 219 VideoChannel* video_channel = GetVideoChannel(session); local
220 if (video_channel) {
221 video_channel->SetRenderer(ssrc, renderer);
265 media_session.video_channel = NULL;
291 media_session.video_channel =
294 // video_channel can be NULL in case of NullVideoEngine.
295 if (media_session.video_channel) {
296 media_session.video_channel->SignalMediaMonitor.connect(
298 media_session.video_channel->StartMediaMonitor(kMediaMonitorInterval);
369 VideoChannel* video_channel = it->second.video_channel local
431 VideoChannel* video_channel = it->second.video_channel; local
502 VideoChannel *video_channel = GetVideoChannel(session); local
555 VideoChannel *video_channel = GetVideoChannel(session); local
579 VideoChannel *video_channel = GetVideoChannel(session); local
686 VideoChannel* video_channel = GetVideoChannel(session); local
701 VideoChannel* video_channel = GetVideoChannel(session); local
844 VideoChannel* video_channel = GetVideoChannel(session); local
904 VideoChannel* video_channel = GetVideoChannel(session); local
    [all...]
mediasessionclient_unittest.cc 2680 cricket::FakeVideoMediaChannel* video_channel = fme_->GetVideoChannel(0); local
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_capture_impl.cc 138 const int video_channel) {
140 << " to channel " << video_channel; local
150 ViEEncoder* vie_encoder = cs.Encoder(video_channel);
156 if (vie_encoder->Owner() != video_channel) {
167 if (vie_capture->RegisterFrameCallback(video_channel, vie_encoder) != 0) {
172 shared_data_->overuse_observers()->find(video_channel);
180 int ViECaptureImpl::DisconnectCaptureDevice(const int video_channel) {
181 LOG(LS_INFO) << "DisconnectCaptureDevice " << video_channel;
184 ViEEncoder* vie_encoder = cs.Encoder(video_channel);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.h 130 virtual cricket::VideoChannel* video_channel() { function in class:webrtc::WebRtcSession
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.h 247 int video_channel() const { return vie_channel_; } function in class:cricket::WebRtcVideoMediaChannel
fakewebrtcvoiceengine.h 112 video_channel(-1),
142 int video_channel; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
238 return channels_[channel]->video_channel;
    [all...]
  /development/ndk/platforms/android-3/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
videodev.h 48 struct video_channel struct
248 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel) /* Get channel info (sources) */
249 #define VIDIOCSCHAN _IOW('v',3,struct video_channel) /* Set channel */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
videodev.h 48 struct video_channel struct
248 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel) /* Get channel info (sources) */
249 #define VIDIOCSCHAN _IOW('v',3,struct video_channel) /* Set channel */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
videodev.h 46 struct video_channel struct
242 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
243 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
videodev.h 46 struct video_channel struct
242 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
243 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
videodev.h 29 struct video_channel struct
225 #define VIDIOCGCHAN _IOWR('v',2,struct video_channel)
226 #define VIDIOCSCHAN _IOW('v',3,struct video_channel)

Completed in 569 milliseconds

1 2 3 4