/external/libkmsxx/py/pykms/ |
D | pyvid.cpp | 14 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/ |
D | videodevice.h | 9 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/ |
D | videodevice.cpp | 240 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/ |
D | mod.rs | 91 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/ |
D | cam.py | 42 vidpath = pykms.VideoDevice.get_capture_devices()[0] 44 vid = pykms.VideoDevice(vidpath)
|
D | wb-m2m-crop.py | 58 vid = pykms.VideoDevice("/dev/video10")
|
/external/swiftshader/include/GL/ |
D | glxext.h | 625 …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/ |
D | glxext.h | 641 …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/ |
D | omap-wbm2m.cpp | 109 VideoDevice vid("/dev/video10"); in main()
|
D | omap-wbcap.cpp | 307 VideoDevice vid("/dev/video11"); in main()
|
/external/OpenCL-CTS/test_conformance/gl/GLEW/GL/ |
D | glxew.h | 1122 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/ |
D | linux.rs | 1121 dev: Box::new(devices::virtio::VideoDevice::new( in create_video_device()
|