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

Commit 591993f1 authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Use enum effect_state consistently"

parents 86012869 452d6d6e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1086,7 +1086,7 @@ private:
        void reset_l();
        status_t configure();
        status_t init();
        uint32_t state() {
        effect_state state() const {
            return mState;
        }
        uint32_t status() {
@@ -1152,7 +1152,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.