diff options
author | Andreas Huber <andih@google.com> | 2012-01-31 11:16:24 -0800 |
---|---|---|
committer | Andreas Huber <andih@google.com> | 2012-01-31 11:16:24 -0800 |
commit | f6b4ca408e6690cebfd52badd6f73c01b3c45037 (patch) | |
tree | a876985c8d0daac969cb4dbd64ceeb35cd81b679 /include | |
parent | 0056c739c5674f7f18d0c8dd2b13b42db97cec5a (diff) | |
download | frameworks_base-f6b4ca408e6690cebfd52badd6f73c01b3c45037.zip frameworks_base-f6b4ca408e6690cebfd52badd6f73c01b3c45037.tar.gz frameworks_base-f6b4ca408e6690cebfd52badd6f73c01b3c45037.tar.bz2 |
Slighly improve the API to discover if the OMX stack is running in the local
process.
Change-Id: Idd3c2f0d4a9542af01a3fdfd3b0bfab90e083505
Diffstat (limited to 'include')
-rw-r--r-- | include/media/IOMX.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/media/IOMX.h b/include/media/IOMX.h index c4cc947..a295e9a 100644 --- a/include/media/IOMX.h +++ b/include/media/IOMX.h @@ -42,10 +42,10 @@ public: typedef void *buffer_id; typedef void *node_id; - // Given the calling process' pid, returns true iff + // Given a node_id and the calling process' pid, returns true iff // the implementation of the OMX interface lives in the same // process. - virtual bool livesLocally(pid_t pid) = 0; + virtual bool livesLocally(node_id node, pid_t pid) = 0; struct ComponentInfo { String8 mName; |