HomeSort by relevance Sort by last modified time
    Searched refs:capture_format_ (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/media/video/capture/
fake_video_capture_device.cc 72 capture_format_.frame_size_type = capture_format.frame_size_type;
81 capture_format_.color = VideoCaptureCapability::kI420;
82 capture_format_.expected_capture_delay = 0;
83 capture_format_.interlaced = false;
85 capture_format_.width = 640;
86 capture_format_.height = 480;
87 capture_format_.frame_rate = 30;
89 capture_format_.width = 320;
90 capture_format_.height = 240;
91 capture_format_.frame_rate = 30
    [all...]
fake_video_capture_device.h 61 VideoCaptureCapability capture_format_; member in class:media::FakeVideoCaptureDevice
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc 86 cricket::VideoFormat capture_format_; member in class:__anon13823::FileVideoCapturerTest
114 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_));
115 EXPECT_EQ(320, capture_format_.width);
116 EXPECT_EQ(240, capture_format_.height);
121 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_));
122 EXPECT_EQ(320, capture_format_.width);
123 EXPECT_EQ(240, capture_format_.height);
130 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_));
131 EXPECT_TRUE(desired == capture_format_);
135 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_));
    [all...]
  /external/chromium_org/content/renderer/media/
video_capture_impl.cc 38 return capture_format_.width;
42 return capture_format_.height;
46 return capture_format_.frame_rate;
63 capture_format_.session_id = id;
185 if (capability.width > capture_format_.width ||
186 capability.height > capture_format_.height) {
210 int session_id = capture_format_.session_id;
212 capture_format_ = capability;
213 capture_format_.session_id = session_id;
214 if (capture_format_.frame_rate > media::limits::kMaxFramesPerSecond
    [all...]
video_capture_impl.h 139 // Member capture_format_ represents the video format requested by the client
141 media::VideoCaptureCapability capture_format_; member in class:content::VideoCaptureImpl
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.h 190 return capture_format_.get();
276 capture_format_.reset(format ? new VideoFormat(*format) : NULL);
306 talk_base::scoped_ptr<VideoFormat> capture_format_; member in class:cricket::VideoCapturer
videocapturer.cc 159 capture_format_ ? new VideoFormat(*capture_format_) : NULL);
170 if (!capture_format_) {
171 LOG(LS_ERROR) << "Missing capture_format_, cannot unpause a camera.";
179 if (!Start(*capture_format_)) {
326 int desired_screencast_fps = capture_format_.get() ?
327 VideoFormat::IntervalToFps(capture_format_->interval) :
mutedvideocapturer_unittest.cc 56 cricket::VideoFormat capture_format_; member in class:MutedVideoCapturerTest

Completed in 221 milliseconds