diff options
author | Zhijun He <zhijunhe@google.com> | 2013-07-23 08:02:53 -0700 |
---|---|---|
committer | Zhijun He <zhijunhe@google.com> | 2013-07-23 11:01:59 -0700 |
commit | 2ab500c632569e2f131a1a2288459933da70c4ee (patch) | |
tree | fe3d1ab19e24e225ea2b6eab9cf2735cda0b2336 /include/camera | |
parent | 0429aa9322a1419eae0b932491b22f300cd58206 (diff) | |
download | frameworks_av-2ab500c632569e2f131a1a2288459933da70c4ee.zip frameworks_av-2ab500c632569e2f131a1a2288459933da70c4ee.tar.gz frameworks_av-2ab500c632569e2f131a1a2288459933da70c4ee.tar.bz2 |
camera2: Implement ICameraDeviceUser::waitUntilIdle
Also fixed some logging typo
Change-Id: Ib254bdb137dca10b12595c23aeb1c53097423425
Diffstat (limited to 'include/camera')
-rw-r--r-- | include/camera/photography/ICameraDeviceUser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/camera/photography/ICameraDeviceUser.h b/include/camera/photography/ICameraDeviceUser.h index 3ea49f4..45988d0 100644 --- a/include/camera/photography/ICameraDeviceUser.h +++ b/include/camera/photography/ICameraDeviceUser.h @@ -61,6 +61,8 @@ public: virtual status_t getCameraInfo(/*out*/ CameraMetadata* info) = 0; + // Wait until all the submitted requests have finished processing + virtual status_t waitUntilIdle() = 0; }; // ---------------------------------------------------------------------------- |