Searched refs:V4L2Camera (Results 1 – 4 of 4) sorted by relevance
/hardware/libhardware/modules/camera/3_4/ |
D | v4l2_camera.cpp | 51 V4L2Camera* V4L2Camera::NewV4L2Camera(int id, const std::string path) { in NewV4L2Camera() 67 return new V4L2Camera(id, std::move(v4l2_wrapper), std::move(metadata)); in NewV4L2Camera() 70 V4L2Camera::V4L2Camera(int id, in V4L2Camera() function in v4l2_camera_hal::V4L2Camera 79 std::bind(&V4L2Camera::enqueueRequestBuffers, this))), 81 std::bind(&V4L2Camera::dequeueRequestBuffers, this))) { 85 V4L2Camera::~V4L2Camera() { in ~V4L2Camera() 89 int V4L2Camera::connect() { in connect() 115 void V4L2Camera::disconnect() { in disconnect() 124 int V4L2Camera::flushBuffers() { in flushBuffers() 129 int V4L2Camera::initStaticInfo(android::CameraMetadata* out) { in initStaticInfo() [all …]
|
D | v4l2_camera.h | 42 class V4L2Camera : public default_camera_hal::Camera { 46 static V4L2Camera* NewV4L2Camera(int id, const std::string path); 47 ~V4L2Camera(); 52 V4L2Camera(int id, 112 DISALLOW_COPY_AND_ASSIGN(V4L2Camera);
|
D | v4l2_camera_hal.cpp | 98 std::unique_ptr<V4L2Camera> cam(V4L2Camera::NewV4L2Camera(id++, node)); in V4L2CameraHAL()
|
D | README.md | 59 restrictions given in the [Metadata](#Metadata) initialized by the V4L2Camera, 67 The V4L2Camera class is the implementation of all the capture functionality. 70 as they come in and are verified. The V4L2Camera runs these through a three 73 * Acceptance: the V4L2Camera accepts the request, and puts it into waiting to be 75 * Enqueuing: the V4L2Camera reads the request settings, applies them to the
|