diff options
author | Igor Murashkin <iam@google.com> | 2013-07-12 17:52:16 -0700 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2013-07-15 13:27:08 -0700 |
commit | 099b457f3203fa51387e21bd450495abb973ab31 (patch) | |
tree | 25c6a2d84c5020575cbf2d40f2fbf60107e5c162 /include | |
parent | ce177bb31493d3cd4450f9d4760fa1fd32ec6bf4 (diff) | |
download | frameworks_av-099b457f3203fa51387e21bd450495abb973ab31.zip frameworks_av-099b457f3203fa51387e21bd450495abb973ab31.tar.gz frameworks_av-099b457f3203fa51387e21bd450495abb973ab31.tar.bz2 |
camera2: Implement ICameraDeviceUser::getCameraInfo
Bug: 9529161
Change-Id: I927e39c124cd5fb19e38423506f4463acc381cb0
Diffstat (limited to 'include')
-rw-r--r-- | include/camera/photography/ICameraDeviceUser.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/camera/photography/ICameraDeviceUser.h b/include/camera/photography/ICameraDeviceUser.h index 1b8d666..3ea49f4 100644 --- a/include/camera/photography/ICameraDeviceUser.h +++ b/include/camera/photography/ICameraDeviceUser.h @@ -58,9 +58,8 @@ public: /*out*/ CameraMetadata* request) = 0; // Get static camera metadata - virtual status_t getCameraInfo(int cameraId, - /*out*/ - camera_metadata** info) = 0; + virtual status_t getCameraInfo(/*out*/ + CameraMetadata* info) = 0; }; |