HomeSort by relevance Sort by last modified time
    Searched refs:FastMixerState (Results 1 - 11 of 11) sorted by null

  /frameworks/av/services/audioflinger/
StateQueueInstantiations.cpp 18 #include "FastMixerState.h"
26 template class StateQueue<FastMixerState>; // typedef FastMixerStateQueue
FastMixerState.cpp 17 #define LOG_TAG "FastMixerState"
21 #include "FastMixerState.h"
35 FastMixerState::FastMixerState() : FastThreadState(),
46 FastMixerState::~FastMixerState()
51 unsigned FastMixerState::sMaxFastTracks = kDefaultFastTracks;
54 pthread_once_t FastMixerState::sMaxFastTracksOnce = PTHREAD_ONCE_INIT;
57 const char *FastMixerState::commandToString(Command command)
64 case FastMixerState::MIX: return "MIX"
    [all...]
FastMixerState.h 53 struct FastMixerState : FastThreadState {
54 FastMixerState();
55 /*virtual*/ ~FastMixerState();
89 }; // struct FastMixerState
FastMixer.h 23 #include "FastMixerState.h"
30 typedef StateQueue<FastMixerState> FastMixerStateQueue;
57 static const FastMixerState sInitial;
59 FastMixerState mPreIdle; // copy of state before we went into idle
60 int mGenerations[FastMixerState::kMaxFastTracks];
FastMixer.cpp 48 /*static*/ const FastMixerState FastMixer::sInitial;
81 for (i = 0; i < FastMixerState::sMaxFastTracks; ++i) {
115 mPreIdle = *(const FastMixerState *)mCurrent;
128 switch ((FastMixerState::Command) command) {
129 case FastMixerState::MIX:
130 case FastMixerState::WRITE:
131 case FastMixerState::MIX_WRITE:
140 const FastMixerState * const current = (const FastMixerState *) mCurrent;
141 const FastMixerState * const previous = (const FastMixerState *) mPrevious
    [all...]
FastMixerDumpState.h 23 #include "FastMixerState.h"
76 FastTrackDump mTracks[FastMixerState::kMaxFastTracks];
FastMixerDumpState.cpp 61 if (mCommand == FastMixerState::INITIAL) {
72 FastMixerState::commandToString(mCommand), mWriteSequence, mFramesWritten,
175 FastMixerState::sMaxFastTracks, trackMask);
177 for (uint32_t i = 0; i < FastMixerState::sMaxFastTracks; ++i, trackMask >>= 1) {
Android.mk 75 FastMixerState.cpp \
Threads.cpp     [all...]
Threads.h     [all...]
Tracks.cpp 448 ALOG_ASSERT(0 < i && i < (int)FastMixerState::sMaxFastTracks);
    [all...]

Completed in 120 milliseconds