summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/AudioFlinger.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-11-08 12:13:58 -0800
committerGlenn Kasten <gkasten@google.com>2012-11-08 12:18:59 -0800
commitb929e417853694e37aba1ef4399f188987b709d9 (patch)
tree670f2da01fd3d33df6da2998c78273e0701300ad /services/audioflinger/AudioFlinger.h
parenta47f3165f53c8e8fb8907a94de7417e2c3047eeb (diff)
downloadframeworks_av-b929e417853694e37aba1ef4399f188987b709d9.zip
frameworks_av-b929e417853694e37aba1ef4399f188987b709d9.tar.gz
frameworks_av-b929e417853694e37aba1ef4399f188987b709d9.tar.bz2
Move buffers pointer out of the control block
This is part of a series to clean up the control block. Change-Id: Ie474557db7cb360f2d9a0f11600a68f5a3d46f07
Diffstat (limited to 'services/audioflinger/AudioFlinger.h')
-rw-r--r--services/audioflinger/AudioFlinger.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/audioflinger/AudioFlinger.h b/services/audioflinger/AudioFlinger.h
index 1417105..fc24bed 100644
--- a/services/audioflinger/AudioFlinger.h
+++ b/services/audioflinger/AudioFlinger.h
@@ -1035,6 +1035,7 @@ private:
AudioBufferProvider::Buffer mOutBuffer;
bool mActive;
DuplicatingThread* const mSourceThread; // for waitTimeMs() in write()
+ void* mBuffers; // starting address of buffers in plain memory
}; // end of OutputTrack
PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output,