summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/TrackBase.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-07-25 14:21:14 -0700
committerGlenn Kasten <gkasten@google.com>2013-07-29 09:40:19 -0700
commitbd4c4fbb3b073e48963185d11a15da1fa18d2e54 (patch)
tree00ebf9a7c78cd47ca27ca22b072142e3b21e7c04 /services/audioflinger/TrackBase.h
parentafbbc6c5f6bc470d504dcf24ceb3ac21d57fb78d (diff)
downloadframeworks_av-bd4c4fbb3b073e48963185d11a15da1fa18d2e54.zip
frameworks_av-bd4c4fbb3b073e48963185d11a15da1fa18d2e54.tar.gz
frameworks_av-bd4c4fbb3b073e48963185d11a15da1fa18d2e54.tar.bz2
Remove obsolete TrackBase::step(), mStepCount, mStepServerFailed
Change-Id: I6347096f066b8b19451c6472db7b0671f0cf7702
Diffstat (limited to 'services/audioflinger/TrackBase.h')
-rw-r--r--services/audioflinger/TrackBase.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/services/audioflinger/TrackBase.h b/services/audioflinger/TrackBase.h
index a243563..44a63c3 100644
--- a/services/audioflinger/TrackBase.h
+++ b/services/audioflinger/TrackBase.h
@@ -108,8 +108,6 @@ protected:
mTerminated = true;
}
- bool step(); // mStepCount is an implicit input
-
bool isOut() const { return mIsOut; }
// true for Track and TimedTrack, false for RecordTrack,
// this could be a track type if needed later
@@ -122,8 +120,6 @@ protected:
// except for OutputTrack when it is in local memory
void* mBufferEnd; // &mBuffer[mFrameCount * frameSize], where frameSize
// is based on mChannelCount and 16-bit samples
- uint32_t mStepCount; // saves AudioBufferProvider::Buffer::frameCount as of
- // time of releaseBuffer() for later use by step()
// we don't really need a lock for these
track_state mState;
const uint32_t mSampleRate; // initial sample rate only; for tracks which
@@ -137,7 +133,6 @@ protected:
const size_t mFrameCount;// size of track buffer given at createTrack() or
// openRecord(), and then adjusted as needed
- bool mStepServerFailed;
const int mSessionId;
Vector < sp<SyncEvent> >mSyncEvents;
const bool mIsOut;