mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 08:54:55 +00:00
- The new isStreamCombinationSupported takes into consideration the session parameters. - In order to create CaptureRequest in ICameraDevice, a createDefaultRequestSettings function is needed. Test: Run camera VTS with session_configuration_with_parameters_query flag enabled Bug: 309627704 Change-Id: Ib344e6991484b834aa8483ed8637ce5cd02ede87
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "android.hardware.camera.provider",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"android/hardware/camera/provider/*.aidl",
|
|
],
|
|
imports: [
|
|
"android.hardware.camera.device-V3",
|
|
"android.hardware.camera.common-V1",
|
|
],
|
|
frozen: false,
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: [
|
|
"android.hardware.camera.device-V1",
|
|
"android.hardware.camera.common-V1",
|
|
],
|
|
},
|
|
{
|
|
version: "2",
|
|
imports: [
|
|
"android.hardware.camera.device-V2",
|
|
"android.hardware.camera.common-V1",
|
|
],
|
|
},
|
|
|
|
],
|
|
|
|
}
|