summaryrefslogtreecommitdiffstats
path: root/include/media/stagefright/foundation
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
commit34bbea84b8374f5d0ebe72b0be4418ace984fac0 (patch)
tree3e933eb60e037a7c91e007eea606b1d9ae9b868f /include/media/stagefright/foundation
parentcbb56d14dad2785baf7a723b43aa6f1da32dc51f (diff)
parent42d7f83904b8a91ce33e87a44de109572679ac1f (diff)
downloadframeworks_av-34bbea84b8374f5d0ebe72b0be4418ace984fac0.zip
frameworks_av-34bbea84b8374f5d0ebe72b0be4418ace984fac0.tar.gz
frameworks_av-34bbea84b8374f5d0ebe72b0be4418ace984fac0.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/media/stagefright/foundation')
-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();