diff options
author | Glenn Kasten <gkasten@google.com> | 2013-07-17 10:10:23 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2013-07-29 10:49:59 -0700 |
commit | 3dcd00dddec86a1c5133083ad7ba2265d49c048c (patch) | |
tree | 0cb9279c20e16d3f059739818b71e9b77c185330 /include | |
parent | b283374cbf79dc5a36f1eef0015d7baf8881792e (diff) | |
download | frameworks_av-3dcd00dddec86a1c5133083ad7ba2265d49c048c.zip frameworks_av-3dcd00dddec86a1c5133083ad7ba2265d49c048c.tar.gz frameworks_av-3dcd00dddec86a1c5133083ad7ba2265d49c048c.tar.bz2 |
Declare methods in binder opcode order
Change-Id: I5f624b7a51ffe1a17a67c056cf984f74e4c56eac
Diffstat (limited to 'include')
-rw-r--r-- | include/media/IAudioRecord.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/media/IAudioRecord.h b/include/media/IAudioRecord.h index d6e3141..eccc2ca 100644 --- a/include/media/IAudioRecord.h +++ b/include/media/IAudioRecord.h @@ -34,6 +34,9 @@ class IAudioRecord : public IInterface public: DECLARE_META_INTERFACE(AudioRecord); + /* get this tracks control block */ + virtual sp<IMemory> getCblk() const = 0; + /* After it's created the track is not active. Call start() to * make it active. */ @@ -44,9 +47,6 @@ public: * will be processed, unless flush() is called. */ virtual void stop() = 0; - - /* get this tracks control block */ - virtual sp<IMemory> getCblk() const = 0; }; // ---------------------------------------------------------------------------- |