Home | History | Annotate | Download | only in base

Lines Matching refs:VideoFormat

82   // of VideoFormat. Once the first frame is captured, the width, height,
145 const std::vector<VideoFormat>* GetSupportedFormats() const;
161 virtual bool GetBestCaptureFormat(const VideoFormat& desired,
162 VideoFormat* best_format);
167 bool StartCapturing(const VideoFormat& capture_format);
180 virtual CaptureState Start(const VideoFormat& capture_format) = 0;
192 const VideoFormat* GetCaptureFormat() const {
204 virtual bool Restart(const VideoFormat& capture_format);
233 void ConstrainSupportedFormats(const VideoFormat& max_format);
287 VideoFormat* last_captured_frame_format);
307 void SetCaptureFormat(const VideoFormat* format) {
308 capture_format_.reset(format ? new VideoFormat(*format) : NULL);
317 void SetSupportedFormats(const std::vector<VideoFormat>& formats);
325 int64_t GetFormatDistance(const VideoFormat& desired,
326 const VideoFormat& supported);
335 bool ShouldFilterFormat(const VideoFormat& format) const;
350 rtc::scoped_ptr<VideoFormat> capture_format_;
351 std::vector<VideoFormat> supported_formats_;
352 rtc::scoped_ptr<VideoFormat> max_format_;
353 std::vector<VideoFormat> filtered_supported_formats_;
375 VideoFormat last_captured_frame_format_;