page.title=Camera version support @jd:body
The Android 5.0 (Lollipop) platform release adds a new app-level camera framework. This document outlines some logistical details that OEMs and SoC vendors need to know.
The following terms are used in this document:
android.hardware.Camera class.
android.hardware.camera2 package.
The new camera frameworks expose lower-level camera control to the app, including efficient zero-copy burst/streaming flows and per-frame controls of exposure, gain, white balance gains, color conversion, denoising, sharpening, and more. See this brief video overview from the Google I/O 2014 conference for additional details.
The Camera API1 interfaces are still available for apps to use on Android 5.0 and later devices, and camera apps built on top of Camera API1 should work as before. Camera API1 is being marked as deprecated in Lollipop, indicating that it will be phased out over time and new platform development will focus on Camera API2. However, we expect this phase-out period to be lengthy, and Camera API1 apps will continue to be supported in Android for some time to come.
All earlier camera HAL versions, including Camera HAL1.0, will also continue to be supported.
Android 5.0 and later devices feature Camera API2, however they may not fully support all of
the new features of Camera API2. The
android.info.supportedHardwareLevel property that apps can query
through the Camera API2 interfaces report one of three support levels:
LEGACY, FULL, and LIMITED.
Legacy devices expose a level of capabilities through the Camera API2 interfaces that are approximately the same as is exposed to apps through the Camera API1 interfaces; the legacy frameworks code conceptually translates Camera API2 calls into Camera API1 calls under the hood. Legacy devices do not support the new Camera API2 features including per-frame controls.
Full devices support all of the major capabilities of Camera API2. Full devices by necessity must have a Camera HAL version of 3.2 (shipping with Android 5.0) or later.
Limited devices are in between: They support some of the new Camera API2 capabilities, but not all of them, and must also comprise a Camera HAL version of 3.2 or later.
Individual capabilities are exposed via the
android.request.availableCapabilities property in the Camera API2
interfaces. Full devices require both the MANUAL_SENSOR and
MANUAL_POST_PROCESSING capabilities, among others. There is also a
RAW capability that is optional even for full devices. Limited
devices can advertise any subset of these capabilities, including none of them. However,
the BACKWARD_COMPATIBLE capability must always be defined.
The supported hardware level of the device, as well as the specific Camera API2 capabilities it supports, are available as the following feature flags to allow Play Store filtering of Camera API2 camera apps; a device must define the feature flag if any of its attached camera devices supports the feature.
android.hardware.camera.hardware_level.full
android.hardware.camera.capability.raw
android.hardware.camera.capability.manual_sensor
android.hardware.camera.capability.manual_post_processing
Android 5.0 and later devices must pass both Camera API1 CTS and Camera API2 CTS. And as always, devices are required to pass the CTS Verifier camera tests.
To add some context: For devices that don’t feature a Camera HAL3.2 implementation and are not capable of supporting the full Camera API2 interfaces, the Camera API2 CTS tests must still be passed. However, in this case the device will be running in Camera API2 legacy mode (in which the Camera API2 calls are conceptually just mapped to Camera API1 calls); and any Camera API2 CTS tests that relate to features or capabilities beyond Camera API1 have logic that will skip them in the case of old (legacy) devices.
On a legacy device, the Camera API2 CTS tests that are not skipped are purely using the existing public Camera API1 interfaces and capabilities (with no new requirements), and any bugs that are exposed (which will in turn cause a Camera API2 CTS failure) are bugs that were already present in the device’s existing Camera HAL and would also be a bug that could be easily hit by existing Camera API1 apps. The expectation is that there should be very few bugs of this nature. Nevertheless, any such bugs will need to be fixed.
Second revision of expanded-capability HAL:
Minor revision of expanded-capability HAL:
First revision of expanded-capability HAL:
Initial release of expanded-capability HAL (Android 4.2) [camera2.h]:
Initial Android camera HAL (Android 4.0) [camera.h]: