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

Commit ee8b3fa6 authored by Nivedita Sarkar's avatar Nivedita Sarkar
Browse files

IMS-VT: Add a bit mask CALL_SUBSTATE_ALL with all call substate bits set

Change-Id: I35ba56c62fcdd867779c1d40879f559abc566e20
CRs-Fixed: 772824
parent 56fd7085
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -85,6 +85,11 @@ public abstract class Connection implements IConferenceable {
    /* Indicates that the call is multitasking */
    /* Indicates that the call is multitasking */
    public static final int CALL_SUBSTATE_MEDIA_PAUSED = 0x8;
    public static final int CALL_SUBSTATE_MEDIA_PAUSED = 0x8;


    /* Mask containing all the call substate bits set */
    public static final int CALL_SUBSTATE_ALL = CALL_SUBSTATE_AUDIO_CONNECTED_SUSPENDED |
        CALL_SUBSTATE_VIDEO_CONNECTED_SUSPENDED | CALL_SUBSTATE_AVP_RETRY |
        CALL_SUBSTATE_MEDIA_PAUSED;

    // Flag controlling whether PII is emitted into the logs
    // Flag controlling whether PII is emitted into the logs
    private static final boolean PII_DEBUG = Log.isLoggable(android.util.Log.DEBUG);
    private static final boolean PII_DEBUG = Log.isLoggable(android.util.Log.DEBUG);