diff options
author | Ruben Brunk <rubenbrunk@google.com> | 2015-06-16 11:00:37 -0700 |
---|---|---|
committer | Ruben Brunk <rubenbrunk@google.com> | 2015-07-06 17:49:44 -0700 |
commit | 3450ba7879be6522ea46a56c5e66e5382f5dd5ba (patch) | |
tree | 201ed5e416af4f44012e6b5c7f2b16bd30cfc673 /include/camera/camera2 | |
parent | a3b3caaae3fc23b99c5c455ee429f79c270cfbae (diff) | |
download | frameworks_av-3450ba7879be6522ea46a56c5e66e5382f5dd5ba.zip frameworks_av-3450ba7879be6522ea46a56c5e66e5382f5dd5ba.tar.gz frameworks_av-3450ba7879be6522ea46a56c5e66e5382f5dd5ba.tar.bz2 |
camera2: Fix native binder interface and add tests.
- Add CameraBinderTests for limited coverage of native
camera2 binder interfaces for the camera service.
- Fix several bugs in the native binder interfaces.
Bug: 18468810
Change-Id: Iab2d81a5cacd20daf7454aeeed033cc13d88452c
Diffstat (limited to 'include/camera/camera2')
-rw-r--r-- | include/camera/camera2/OutputConfiguration.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/camera/camera2/OutputConfiguration.h b/include/camera/camera2/OutputConfiguration.h index e6b679f..5bcbe15 100644 --- a/include/camera/camera2/OutputConfiguration.h +++ b/include/camera/camera2/OutputConfiguration.h @@ -39,6 +39,8 @@ public: // getRotation will be INVALID_ROTATION if error occurred OutputConfiguration(const Parcel& parcel); + OutputConfiguration(sp<IGraphicBufferProducer>& gbp, int rotation); + private: sp<IGraphicBufferProducer> mGbp; int mRotation; |