HomeSort by relevance Sort by last modified time
    Searched defs:V4L2Device (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/common/gpu/media/
v4l2_video_device.h 5 // This file defines the V4L2Device interface which is used by the
19 class V4L2Device {
28 virtual ~V4L2Device();
36 // Creates and initializes an appropriate V4L2Device of |type| for the
37 // current platform and returns a scoped_ptr<V4L2Device> on success, or NULL.
38 static scoped_ptr<V4L2Device> Create(Type type);
70 // Initializes the V4L2Device to operate as a device of |type|.
74 // Creates an EGLImageKHR since each V4L2Device may use a different method of
77 // used to associate the returned EGLImageKHR by the underlying V4L2Device
90 // Returns the supported texture target for the V4L2Device
    [all...]
v4l2_video_device.cc 13 V4L2Device::~V4L2Device() {}
16 scoped_ptr<V4L2Device> V4L2Device::Create(Type type) {
21 return exynos_device.PassAs<V4L2Device>();
25 return tegra_device.PassAs<V4L2Device>();
27 DLOG(ERROR) << "Failed to create V4L2Device";
28 return scoped_ptr<V4L2Device>();
32 media::VideoFrame::Format V4L2Device::V4L2PixFmtToVideoFrameFormat(
50 uint32 V4L2Device::VideoFrameFormatToV4L2PixFmt
    [all...]

Completed in 45 milliseconds