Searched refs:VideoDevice (Results 1 – 8 of 8) sorted by relevance
/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 | 8 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 | 164 VideoDevice::VideoDevice(const string& dev) in VideoDevice() function in VideoDevice 165 :VideoDevice(::open(dev.c_str(), O_RDWR | O_NONBLOCK)) in VideoDevice() 169 VideoDevice::VideoDevice(int fd) in VideoDevice() function in VideoDevice 211 VideoDevice::~VideoDevice() in ~VideoDevice() 216 VideoStreamer* VideoDevice::get_capture_streamer() in get_capture_streamer() 228 VideoStreamer* VideoDevice::get_output_streamer() in get_output_streamer() 240 vector<tuple<uint32_t, uint32_t>> VideoDevice::get_discrete_frame_sizes(PixelFormat fmt) in get_discrete_frame_sizes() 260 VideoDevice::VideoFrameSize VideoDevice::get_frame_sizes(PixelFormat fmt) in get_frame_sizes() 283 vector<string> VideoDevice::get_capture_devices() in get_capture_devices() 294 VideoDevice vid(name); in get_capture_devices() [all …]
|
/external/libkmsxx/py/tests/ |
D | cam.py | 33 vidpath = pykms.VideoDevice.get_capture_devices()[0] 35 vid = pykms.VideoDevice(vidpath)
|
/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 | 611 …ef int ( *PFNGLXRELEASEVIDEODEVICENVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice); 612 typedef int ( *PFNGLXBINDVIDEOIMAGENVPROC) (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer … 615 typedef int ( *PFNGLXGETVIDEOINFONVPROC) (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, u… 618 int glXReleaseVideoDeviceNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice); 619 int glXBindVideoImageNV (Display *dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuf… 622 int glXGetVideoInfoNV (Display *dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCo…
|
/external/libkmsxx/utils/ |
D | wbm2m.cpp | 81 VideoDevice vid("/dev/video10"); in main()
|
D | wbcap.cpp | 315 VideoDevice vid("/dev/video11"); in main()
|