summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Sparks <davidsparks@android.com>2009-06-23 17:30:11 -0700
committerDave Sparks <davidsparks@android.com>2009-06-24 07:58:27 -0700
commit5e27115995c4506dddf4f1271effd4fb4c935ad3 (patch)
treedd67833f50a64768b2bf25ec4d9dd5daa3a2dd78 /include
parent5f80605a0b866f34c74955e190909bd6ab5d992e (diff)
downloadframeworks_base-5e27115995c4506dddf4f1271effd4fb4c935ad3.zip
frameworks_base-5e27115995c4506dddf4f1271effd4fb4c935ad3.tar.gz
frameworks_base-5e27115995c4506dddf4f1271effd4fb4c935ad3.tar.bz2
Use a ref-counted callback interface for Camera.
This allows the camera service to hang onto the callback interface until all callbacks have been processed. This prevents problems where pending callbacks in binder worker threads are processed after the Java camera object and its associated native resources have been released. Bug 1884362
Diffstat (limited to 'include')
-rw-r--r--include/ui/Camera.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/ui/Camera.h b/include/ui/Camera.h
index 048bdd5..bd4855c 100644
--- a/include/ui/Camera.h
+++ b/include/ui/Camera.h
@@ -86,6 +86,14 @@ class Surface;
class Mutex;
class String8;
+// ref-counted object for callbacks
+class CameraListener: virtual public RefBase
+{
+public:
+ virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
+ virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr) = 0;
+};
+
typedef void (*shutter_callback)(void *cookie);
typedef void (*frame_callback)(const sp<IMemory>& mem, void *cookie);
typedef void (*autofocus_callback)(bool focused, void *cookie);
@@ -152,6 +160,9 @@ public:
void setErrorCallback(error_callback cb, void *cookie);
void setAutoFocusCallback(autofocus_callback cb, void *cookie);
+ void setListener(const sp<CameraListener>& listener);
+ void setPreviewCallbackFlags(int preview_callback_flag);
+
// ICameraClient interface
virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr);
@@ -194,6 +205,8 @@ private:
autofocus_callback mAutoFocusCallback;
void *mAutoFocusCallbackCookie;
+ sp<CameraListener> mListener;
+
friend class DeathNotifier;
static Mutex mLock;