Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28243dd5 authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Use enum effect_state consistently

Also fix indentation

Change-Id: I393ef9e37ffceed5ad4a78df439726ae1fe139df
parent 2857b47a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1087,7 +1087,7 @@ private:
        void reset_l();
        status_t configure();
        status_t init();
        uint32_t state() {
        effect_state state() const {
            return mState;
        }
        uint32_t status() {
@@ -1153,7 +1153,7 @@ mutable Mutex mLock; // mutex for process, commands and handl
        effect_config_t     mConfig;    // input and output audio configuration
        effect_handle_t  mEffectInterface; // Effect module C API
        status_t            mStatus;    // initialization status
        uint32_t mState;                // current activation state (effect_state)
        effect_state        mState;     // current activation state
        Vector< wp<EffectHandle> > mHandles;    // list of client handles
        uint32_t mMaxDisableWaitCnt;    // maximum grace period before forcing an effect off after
                                        // sending disable command.