Home
last modified time | relevance | path

Searched refs:VideoDevice (Results 1 – 12 of 12) sorted by relevance

/external/libkmsxx/py/pykms/
Dpyvid.cpp14 py::class_<VideoDevice>(m, "VideoDevice") in init_pyvid()
16 .def_property_readonly("fd", &VideoDevice::fd) in init_pyvid()
17 .def_property_readonly("has_capture", &VideoDevice::has_capture) in init_pyvid()
18 .def_property_readonly("has_output", &VideoDevice::has_output) in init_pyvid()
19 .def_property_readonly("has_m2m", &VideoDevice::has_m2m) in init_pyvid()
20 .def_property_readonly("capture_streamer", &VideoDevice::get_capture_streamer) in init_pyvid()
21 .def_property_readonly("output_streamer", &VideoDevice::get_output_streamer) in init_pyvid()
22 .def_property_readonly("discrete_frame_sizes", &VideoDevice::get_discrete_frame_sizes) in init_pyvid()
23 .def_property_readonly("frame_sizes", &VideoDevice::get_frame_sizes) in init_pyvid()
24 .def("get_capture_devices", &VideoDevice::get_capture_devices); in init_pyvid()
/external/libkmsxx/kms++util/inc/kms++util/
Dvideodevice.h9 class VideoDevice
17 VideoDevice(const std::string& dev);
18 VideoDevice(int fd);
19 ~VideoDevice();
21 VideoDevice(const VideoDevice& other) = delete;
22 VideoDevice& operator=(const VideoDevice& other) = delete;
/external/libkmsxx/kms++util/src/
Dvideodevice.cpp240 VideoDevice::VideoDevice(const string& dev) in VideoDevice() function in VideoDevice
241 : VideoDevice(::open(dev.c_str(), O_RDWR | O_NONBLOCK)) in VideoDevice()
245 VideoDevice::VideoDevice(int fd) in VideoDevice() function in VideoDevice
288 VideoDevice::~VideoDevice() in ~VideoDevice()
293 VideoStreamer* VideoDevice::get_capture_streamer() in get_capture_streamer()
305 VideoStreamer* VideoDevice::get_output_streamer() in get_output_streamer()
317 vector<tuple<uint32_t, uint32_t>> VideoDevice::get_discrete_frame_sizes(PixelFormat fmt) in get_discrete_frame_sizes()
337 VideoDevice::VideoFrameSize VideoDevice::get_frame_sizes(PixelFormat fmt) in get_frame_sizes()
360 vector<string> VideoDevice::get_capture_devices() in get_capture_devices()
372 VideoDevice vid(name); in get_capture_devices()
[all …]
/external/crosvm/devices/src/virtio/video/
Dmod.rs91 pub struct VideoDevice { struct
98 impl VideoDevice { impl
103 ) -> VideoDevice { in new() argument
104 VideoDevice { in new()
113 impl Drop for VideoDevice { implementation
122 impl VirtioDevice for VideoDevice { implementation
/external/libkmsxx/py/tests/
Dcam.py42 vidpath = pykms.VideoDevice.get_capture_devices()[0]
44 vid = pykms.VideoDevice(vidpath)
Dwb-m2m-crop.py58 vid = pykms.VideoDevice("/dev/video10")
/external/swiftshader/include/GL/
Dglxext.h625 …ef int ( *PFNGLXRELEASEVIDEODEVICENVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
626 typedef int ( *PFNGLXBINDVIDEOIMAGENVPROC) (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer …
629 typedef int ( *PFNGLXGETVIDEOINFONVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, u…
632 int glXReleaseVideoDeviceNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
633 int glXBindVideoImageNV (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuf…
636 int glXGetVideoInfoNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCo…
/external/mesa3d/include/GL/
Dglxext.h641 …ef int ( *PFNGLXRELEASEVIDEODEVICENVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
642 typedef int ( *PFNGLXBINDVIDEOIMAGENVPROC) (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer …
645 typedef int ( *PFNGLXGETVIDEOINFONVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, u…
648 int glXReleaseVideoDeviceNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice);
649 int glXBindVideoImageNV (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuf…
652 int glXGetVideoInfoNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCo…
/external/libkmsxx/utils/
Domap-wbm2m.cpp109 VideoDevice vid("/dev/video10"); in main()
Domap-wbcap.cpp307 VideoDevice vid("/dev/video11"); in main()
/external/OpenCL-CTS/test_conformance/gl/GLEW/GL/
Dglxew.h1122 typedef int ( * PFNGLXBINDVIDEOIMAGENVPROC) (Display* dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer…
1124 typedef int ( * PFNGLXGETVIDEOINFONVPROC) (Display* dpy, int screen, GLXVideoDeviceNV VideoDevice, …
1125 …f int ( * PFNGLXRELEASEVIDEODEVICENVPROC) (Display* dpy, int screen, GLXVideoDeviceNV VideoDevice);
/external/crosvm/src/
Dlinux.rs1121 dev: Box::new(devices::virtio::VideoDevice::new( in create_video_device()