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

Commit 58716c93 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "audioflinger: fix missing EffectBase member init" am: 249dba6e am: 428370d6

Change-Id: I21187072c935af1693feba4782aab0d87ee05ffc
parents 0c9ce88b 428370d6
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -174,7 +174,8 @@ mutable Mutex mLock; // mutex for process, commands and han
    const audio_session_t     mSessionId; // audio session ID
    const audio_session_t     mSessionId; // audio session ID
    const effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
    const effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
    effect_state              mState = IDLE; // current activation state
    effect_state              mState = IDLE; // current activation state
    bool                      mSuspended; // effect is suspended: temporarily disabled by framework
    // effect is suspended: temporarily disabled by framework
    bool                      mSuspended = false;


    Vector<EffectHandle *>    mHandles;   // list of client handles
    Vector<EffectHandle *>    mHandles;   // list of client handles
                // First handle in mHandles has highest priority and controls the effect module
                // First handle in mHandles has highest priority and controls the effect module