diff options
author | Ruben Brunk <rubenbrunk@google.com> | 2014-02-21 17:40:51 -0800 |
---|---|---|
committer | Ruben Brunk <rubenbrunk@google.com> | 2014-03-13 12:14:49 -0700 |
commit | 85c4388de1fea3d45783f07895c2b113c4cc1ba5 (patch) | |
tree | 51ac56843e0d8d0407ca6ba543ae7a2e44aa1bb3 /core/java/android/hardware/ICameraService.aidl | |
parent | 8eb91e9f281f876322a25c78f776ea74791eaf1c (diff) | |
download | frameworks_base-85c4388de1fea3d45783f07895c2b113c4cc1ba5.zip frameworks_base-85c4388de1fea3d45783f07895c2b113c4cc1ba5.tar.gz frameworks_base-85c4388de1fea3d45783f07895c2b113c4cc1ba5.tar.bz2 |
camera3: Pass vendor tags through binder.
Bug: 12134423
Change-Id: Icef3fe9e67160767bdb8244ac49c85b68b497123
Diffstat (limited to 'core/java/android/hardware/ICameraService.aidl')
-rw-r--r-- | core/java/android/hardware/ICameraService.aidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/hardware/ICameraService.aidl b/core/java/android/hardware/ICameraService.aidl index 542af6a..4c50dda 100644 --- a/core/java/android/hardware/ICameraService.aidl +++ b/core/java/android/hardware/ICameraService.aidl @@ -61,4 +61,12 @@ interface ICameraService int removeListener(ICameraServiceListener listener); int getCameraCharacteristics(int cameraId, out CameraMetadataNative info); + + /** + * The java stubs for this method are not intended to be used. Please use + * the native stub in frameworks/av/include/camera/ICameraService.h instead. + * The BinderHolder output is being used as a placeholder, and will not be + * well-formatted in the generated java method. + */ + int getCameraVendorTagDescriptor(out BinderHolder desc); } |