tree: 00437047cfa162e8939a253c1dffb83bd2ffdbd0 [path history] [tgz]
  1. android/
  2. build/
  3. camera3_test/
  4. common/
  5. docs/
  6. hal/
  7. hal_adapter/
  8. include/
  9. mojo/
  10. tools/
  11. .presubmitignore
  12. OWNERS
  13. README.md
camera/README.md

Chrome OS Platform Camera

The repository hosts the core Chrome OS platform camera components, including:

  • Camera Hardware Abstraction Layers (HALs) of different platforms
  • Common dependencies and libraries needed by the camera HALs
  • Camera HAL adapter to interface with all the camera clients through Mojo IPC
  • Camera conformance test suite for the camera HALs

System Overview

Chrome OS camera stack

The camera service provider on Chrome OS is a standalone process that can be divided into two part:

  • Platform-specific camera HAL that interfaces with the kernel drivers and provide all the camera functions through the Android camera HAL v3 APIs.
  • Camera HAL v3 adapter that provides Mojo IPC interface for all the clients on Chrome OS to access the platform-specific camera HAL.

Currently we have two major camera clients on Chrome OS: Chrome browser and Android container. All the clients connect to the camera HAL adapter through the Camera Module Mojo IPC interface and the Camera Device Mojo IPC interface to access camera functions. The Mojo IPC interface is very similar to the Android camera HAL v3 APIs.

Camera 3A Library Sandboxing

Usually the platform-specific camera HAL is accompanied with a proprietary camera 3A (auto focus, auto exposure, and auto white-balance) library that provides the algorithms to control the camera subsystem for capturing high quality images. We isolate the camera 3A library in a separated sandboxed process for security consideration. The camera HAL accesses the camera 3A library through the Camera Algorithm Mojo IPC interface.

Encoding / Decoding JPEG images

The camera HAL needs to generate JPEG images when processing still shot requests. On Chrome OS the JPEG codec service, if supported on the platform, is provided by the GPU process in Chrome browser. We provide libraries to handle JPEG encoding and decoding: On platform that supports hardware-accelerated JPEG encoder/decoder, the JPEG libraries connect to the Chrome GPU process through Mojo IPC channels to encode/decode JPEG images; otherwise the JPEG encoding/decoding is done through software.

Adding a New Camera HAL

Creating a Camera HAL for Chrome OS

The Chrome OS camera HAL are essentially the following shared libraries, plus and dependencies required by them:

  • camera_hal.so that provides the camera HAL interface. This is very similar to a regular Android camera HAL. (Required)
  • libcam_algo.so that provides the camera algorithm interface for the isolated camera 3A library. (Required if the camera HAL requires 3A library to work).

We provide the following packages that are required to build the camera HAL:

  • media-libs/cros-camera-android-headers

    A package that installs all the necessary Android headers files required by the camera HAL.

  • media-libs/cros-camera-libcab

    Provides functions to access the isolated camera 3A library if the camera HAL requires it to work.

  • media-libs/cros-camera-libcbm

    A replacement for Android gralloc. The library provides APIs to import and map buffer handles received in capture requests.

  • media-libs/cros-camera-libcamera_client

    A port of the Android libcamera_client.

  • media-libs/cros-camera-libcamera_metadata

    A port of the Android libcamera_metadata.

  • media-libs/cros-camera-libcamera_v4l2_device

    Provides functions to access camera V4L2 devices.

  • media-libs/libsync

    A port of the Android libsync.

In addition to the required packages, we also have some useful packages that can handle some general functions for the camera HAL:

  • media-libs/cros-camera-libcamera_exif

    Provides utility functions to fill in the EXIF headers of a JPEG image.

  • media-libs/cros-camera-libcamera_timezone

    Provides utility functions to get the local timezone.

Uploading the Camera HAL Source Code

To add a new camera HAL for a new platform, one needs to upload the source code of the camera HAL to the camera HAL directory.

Examples: Intel camera HAL, USB camera HAL.

Adding ebuild Files

After the camera HAL source code is uploaded, one needs to add corresponding packages to build and install the camera HAL and the required libraries. On Chrome OS, packages are managed by ebuild files. The following ebuild files are required for a new camera HAL:

  • A ebuild file for the newly added camera HAL. The ebuild file is used to build and install the platform specific camera HAL and the camera algorithm (libcam_algo.so) shared libraries into the board sysroot. To integrate the camera HAL into the OS image, a virtual/cros-camera-hal ebuild that includes the newly added camera HAL as RDEPEND is required in the baseboard or board overlay.