Searched refs:V4L2Camera (Results 1 – 4 of 4) sorted by relevance
/hardware/libhardware/modules/camera/3_4/ |
D | v4l2_camera.cpp | 40 V4L2Camera* V4L2Camera::NewV4L2Camera(int id, const std::string path) { in NewV4L2Camera() 56 return new V4L2Camera(id, std::move(v4l2_wrapper), std::move(metadata)); in NewV4L2Camera() 59 V4L2Camera::V4L2Camera(int id, in V4L2Camera() function in v4l2_camera_hal::V4L2Camera 66 std::bind(&V4L2Camera::enqueueRequestBuffers, this))), in V4L2Camera() 68 std::bind(&V4L2Camera::dequeueRequestBuffers, this))), in V4L2Camera() 74 V4L2Camera::~V4L2Camera() { in ~V4L2Camera() 78 int V4L2Camera::connect() { in connect() 104 void V4L2Camera::disconnect() { in disconnect() 113 int V4L2Camera::flushBuffers() { in flushBuffers() 118 int V4L2Camera::initStaticInfo(android::CameraMetadata* out) { in initStaticInfo() [all …]
|
D | v4l2_camera.h | 40 class V4L2Camera : public default_camera_hal::Camera { 44 static V4L2Camera* NewV4L2Camera(int id, const std::string path); 45 ~V4L2Camera(); 50 V4L2Camera(int id, 110 DISALLOW_COPY_AND_ASSIGN(V4L2Camera);
|
D | v4l2_camera_hal.cpp | 101 std::unique_ptr<V4L2Camera> cam(V4L2Camera::NewV4L2Camera(id++, node)); in V4L2CameraHAL()
|
D | README.md | 67 restrictions given in the [Metadata](#Metadata) initialized by the V4L2Camera, 75 The V4L2Camera class is the implementation of all the capture functionality. 78 as they come in and are verified. The V4L2Camera runs these through a three 81 * Acceptance: the V4L2Camera accepts the request, and puts it into waiting to be 83 * Enqueuing: the V4L2Camera reads the request settings, applies them to the
|