summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/FastCapture.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2015-03-03 11:23:17 -0800
committerGlenn Kasten <gkasten@google.com>2015-03-03 15:55:56 -0800
commite4a7ce250cb94a00aa2f76e5edca1c4479dc5401 (patch)
tree90743cbfc56a46b815fc5118b0695f5130e8d6a5 /services/audioflinger/FastCapture.h
parentd702a568cb62e5aebe048147350bb3c76f9386ba (diff)
downloadframeworks_av-e4a7ce250cb94a00aa2f76e5edca1c4479dc5401.zip
frameworks_av-e4a7ce250cb94a00aa2f76e5edca1c4479dc5401.tar.gz
frameworks_av-e4a7ce250cb94a00aa2f76e5edca1c4479dc5401.tar.bz2
Add "m" prefix to fields
Change-Id: Ifdb8fa886d1ff53cd7c8aff3c2f8286e6e18dec2
Diffstat (limited to 'services/audioflinger/FastCapture.h')
-rw-r--r--services/audioflinger/FastCapture.h26
1 files changed, 14 insertions, 12 deletions
diff --git a/services/audioflinger/FastCapture.h b/services/audioflinger/FastCapture.h
index da0fe2f..eec89c9 100644
--- a/services/audioflinger/FastCapture.h
+++ b/services/audioflinger/FastCapture.h
@@ -46,19 +46,21 @@ private:
virtual void onStateChange();
virtual void onWork();
- static const FastCaptureState initial;
- FastCaptureState preIdle; // copy of state before we went into idle
+ static const FastCaptureState sInitial;
+
+ FastCaptureState mPreIdle; // copy of state before we went into idle
// FIXME by renaming, could pull up many of these to FastThread
- NBAIO_Source *inputSource;
- int inputSourceGen;
- NBAIO_Sink *pipeSink;
- int pipeSinkGen;
- short *readBuffer;
- ssize_t readBufferState; // number of initialized frames in readBuffer, or -1 to clear
- NBAIO_Format format;
- unsigned sampleRate;
- FastCaptureDumpState dummyDumpState;
- uint32_t totalNativeFramesRead; // copied to dumpState->mFramesRead
+ NBAIO_Source* mInputSource;
+ int mInputSourceGen;
+ NBAIO_Sink* mPipeSink;
+ int mPipeSinkGen;
+ short* mReadBuffer;
+ ssize_t mReadBufferState; // number of initialized frames in readBuffer,
+ // or -1 to clear
+ NBAIO_Format mFormat;
+ unsigned mSampleRate;
+ FastCaptureDumpState mDummyFastCaptureDumpState;
+ uint32_t mTotalNativeFramesRead; // copied to dumpState->mFramesRead
}; // class FastCapture