mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Also some updates to HIDL interface:
- Add releaseRecordingFrameHandle to ICameraDevice
for native handle metadata recording mode
- Add handleCallbackTimestamp to ICameraDevieCallback
for native handle metadata recording mode
- Add missing face detection metadata to
ICameraDeviceCallback::dataCallback
- Instead of passing native handle, pass buffer ID
in dequeueBuffer/enqueueBuffer/cancelBuffer in
ICameraDevicePreviewCallback
- Add CameraFrameMetadata in types.hal for face
metadata
Test: Camera CTS passing (except FlashLightTest) on Angler
Bug: 30985004
Change-Id: Idf72a4b5f4c934845ac698f0b13536608ffd0100
28 lines
672 B
Plaintext
28 lines
672 B
Plaintext
cc_library_shared {
|
|
name: "camera.device@1.0-impl",
|
|
srcs: [
|
|
"CameraDevice.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libutils",
|
|
"android.hardware.camera.device@1.0",
|
|
"android.hardware.camera.common@1.0",
|
|
"android.hardware.graphics.allocator@2.0",
|
|
"android.hardware.graphics.common@1.0",
|
|
"android.hidl.base@1.0",
|
|
"libcutils",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata",
|
|
"libbinder",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
],
|
|
export_include_dirs: ["."]
|
|
}
|
|
|