summaryrefslogtreecommitdiffstats
path: root/services/audioflinger/FastCaptureState.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/FastCaptureState.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/FastCaptureState.h')
-rw-r--r--services/audioflinger/FastCaptureState.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/services/audioflinger/FastCaptureState.h b/services/audioflinger/FastCaptureState.h
index 17302d3..9bca2d4 100644
--- a/services/audioflinger/FastCaptureState.h
+++ b/services/audioflinger/FastCaptureState.h
@@ -29,20 +29,20 @@ struct FastCaptureState : FastThreadState {
/*virtual*/ ~FastCaptureState();
// all pointer fields use raw pointers; objects are owned and ref-counted by RecordThread
- NBAIO_Source *mInputSource; // HAL input device, must already be negotiated
+ NBAIO_Source* mInputSource; // HAL input device, must already be negotiated
// FIXME by renaming, could pull up these fields to FastThreadState
int mInputSourceGen; // increment when mInputSource is assigned
- NBAIO_Sink *mPipeSink; // after reading from input source, write to this pipe sink
+ NBAIO_Sink* mPipeSink; // after reading from input source, write to this pipe sink
int mPipeSinkGen; // increment when mPipeSink is assigned
size_t mFrameCount; // number of frames per fast capture buffer
- audio_track_cblk_t *mCblk; // control block for the single fast client, or NULL
+ audio_track_cblk_t* mCblk; // control block for the single fast client, or NULL
// Extends FastThreadState::Command
static const Command
// The following commands also process configuration changes, and can be "or"ed:
- READ = 0x8, // read from input source
- WRITE = 0x10, // write to pipe sink
- READ_WRITE = 0x18; // read from input source and write to pipe sink
+ READ = 0x8, // read from input source
+ WRITE = 0x10, // write to pipe sink
+ READ_WRITE = 0x18; // read from input source and write to pipe sink
// never returns NULL; asserts if command is invalid
static const char *commandToString(Command command);