summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-07-02 10:02:17 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-07-02 10:02:17 -0700
commit2cfd8198cc4e1dcdcae52ae8a0c86b871c87a27e (patch)
treea91178009f7fe7f594facd47a37eac213f84e297 /include
parent5460d126f024a8d6597ce4eb127b51c101724960 (diff)
parent4f104d99d8657fd3fef675eb2a3e84ba9f5870e4 (diff)
downloadframeworks_base-2cfd8198cc4e1dcdcae52ae8a0c86b871c87a27e.zip
frameworks_base-2cfd8198cc4e1dcdcae52ae8a0c86b871c87a27e.tar.gz
frameworks_base-2cfd8198cc4e1dcdcae52ae8a0c86b871c87a27e.tar.bz2
Merge "Add an option to ALooper::start that allows it to call back into java or not." into gingerbread
Diffstat (limited to 'include')
-rw-r--r--include/media/stagefright/foundation/ALooper.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/media/stagefright/foundation/ALooper.h b/include/media/stagefright/foundation/ALooper.h
index 69ad837..194f1fc 100644
--- a/include/media/stagefright/foundation/ALooper.h
+++ b/include/media/stagefright/foundation/ALooper.h
@@ -39,7 +39,10 @@ struct ALooper : public RefBase {
handler_id registerHandler(const sp<AHandler> &handler);
void unregisterHandler(handler_id handlerID);
- status_t start(bool runOnCallingThread = false);
+ status_t start(
+ bool runOnCallingThread = false,
+ bool canCallJava = false);
+
status_t stop();
static int64_t GetNowUs();