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

  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc 86 cricket::VideoFormat capture_format_; member in class:__anon16384::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/media/video/capture/android/
video_capture_device_android.cc 79 capture_format_.frame_size.SetSize(
82 capture_format_.frame_rate =
84 capture_format_.pixel_format = GetColorspace();
85 DCHECK_NE(capture_format_.pixel_format, media::PIXEL_FORMAT_UNKNOWN);
86 CHECK(capture_format_.frame_size.GetArea() > 0);
87 CHECK(!(capture_format_.frame_size.width() % 2));
88 CHECK(!(capture_format_.frame_size.height() % 2));
90 if (capture_format_.frame_rate > 0) {
92 (base::Time::kMicrosecondsPerSecond + capture_format_.frame_rate - 1) /
93 capture_format_.frame_rate)
169 capture_format_, local
    [all...]
video_capture_device_android.h 77 VideoCaptureFormat capture_format_; member in class:media::VideoCaptureDeviceAndroid
  /external/chromium_org/media/video/capture/
fake_video_capture_device.cc 76 capture_format_.pixel_format = params.requested_format.pixel_format;
77 capture_format_.frame_rate = 30;
79 capture_format_.frame_size.SetSize(1280, 720);
81 capture_format_.frame_size.SetSize(640, 480);
83 capture_format_.frame_size.SetSize(320, 240);
85 VideoFrame::AllocationSize(VideoFrame::I420, capture_format_.frame_size);
104 VideoFrame::AllocationSize(VideoFrame::I420, capture_format_.frame_size);
109 capture_format_.frame_size.width(),
110 capture_format_.frame_size.height(),
111 capture_format_.frame_size.width())
    [all...]
fake_video_capture_device.h 56 VideoCaptureFormat capture_format_; member in class:media::FakeVideoCaptureDevice
file_video_capture_device.cc 171 DCHECK_EQ(capture_format_.pixel_format, PIXEL_FORMAT_I420);
173 return capture_format_.frame_size.GetArea() * 12 / 8;
187 ParseFileAndExtractVideoFormat(&file_, &capture_format_);
189 DVLOG(1) << "Opened video file " << capture_format_.frame_size.ToString()
190 << ", fps: " << capture_format_.frame_rate;
235 capture_format_,
243 base::TimeDelta::FromSeconds(1) / capture_format_.frame_rate);
file_video_capture_device.h 46 // defined by |capture_format_|.
67 VideoCaptureFormat capture_format_; member in class:media::FileVideoCaptureDevice
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.h 193 return capture_format_.get();
319 capture_format_.reset(format ? new VideoFormat(*format) : NULL);
320 if (capture_format_) {
321 ASSERT(capture_format_->interval > 0 &&
324 video_adapter_.SetInputFormat(*capture_format_);
364 talk_base::scoped_ptr<VideoFormat> capture_format_; member in class:cricket::VideoCapturer
mutedvideocapturer_unittest.cc 56 cricket::VideoFormat capture_format_; member in class:MutedVideoCapturerTest
videocapturer.cc 180 capture_format_ ? new VideoFormat(*capture_format_) : NULL);
191 if (!capture_format_) {
192 LOG(LS_ERROR) << "Missing capture_format_, cannot unpause a camera.";
200 if (!Start(*capture_format_)) {
366 int desired_screencast_fps = capture_format_.get() ?
367 VideoFormat::IntervalToFps(capture_format_->interval) :
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device.cc 116 media::VideoCaptureFormat capture_format_; member in class:content::DesktopCaptureDevice::Core
242 webrtc::DesktopSize(capture_format_.frame_size.width(),
243 capture_format_.frame_size.height())));
255 webrtc::DesktopSize output_size(capture_format_.frame_size.width(),
256 capture_format_.frame_size.height());
309 output_data, output_bytes, capture_format_, 0, base::TimeTicks::Now());
323 capture_format_ = requested_params_.requested_format;
326 capture_format_.pixel_format = media::PIXEL_FORMAT_ARGB;
368 capture_format_.frame_size.SetSize(output_rect_.width(),
374 webrtc::DesktopSize(capture_format_.frame_size.width()
    [all...]
  /external/chromium_org/media/video/capture/mac/
video_capture_device_mac.h 69 VideoCaptureFormat capture_format_; member in class:media::VideoCaptureDeviceMac
  /external/chromium_org/media/video/capture/win/
video_capture_device_mf_win.h 63 VideoCaptureFormat capture_format_; member in class:media::VideoCaptureDeviceMFWin
video_capture_device_win.h 109 VideoCaptureFormat capture_format_; member in class:media::VideoCaptureDeviceWin
video_capture_device_mf_win.cc 274 capture_format_ = found_capability.supported_format;
314 data, length, capture_format_, rotation, time_stamp);
video_capture_device_win.cc 377 capture_format_ = sink_filter_->ResultingFormat();
421 buffer, length, capture_format_, 0, base::TimeTicks::Now());
  /external/chromium_org/media/video/capture/linux/
video_capture_device_linux.h 79 VideoCaptureFormat capture_format_; member in class:media::VideoCaptureDeviceLinux
video_capture_device_linux.cc 305 capture_format_.frame_size.SetSize(video_fmt.fmt.pix.width,
307 capture_format_.frame_rate = frame_rate;
308 capture_format_.pixel_format =
410 capture_format_, local

Completed in 240 milliseconds