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

Commit 9aaece4e authored by Suresh Kumar Sugguna's avatar Suresh Kumar Sugguna Committed by Linux Build Service Account
Browse files

IMS: Rectify the capability mask for add participant

Properly set the add participant capability mask.

Change-Id: Ie6ca67146bc6d2623bd366b04bf33c2ed24c3d51
CRs-Fixed: 10375309
parent a694b103
Loading
Loading
Loading
Loading
+8 −8
Original line number Original line Diff line number Diff line
@@ -235,13 +235,6 @@ public abstract class Connection extends Conferenceable {
     */
     */
    public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000;
    public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000;


    /**
     * Add participant in an active or conference call option
     *
     * @hide
     */
    public static final int CAPABILITY_ADD_PARTICIPANT = 0x02000000;

    /**
    /**
     * For a conference, indicates the conference will not have child connections.
     * For a conference, indicates the conference will not have child connections.
     * <p>
     * <p>
@@ -301,9 +294,16 @@ public abstract class Connection extends Conferenceable {
     */
     */
    public static final int CAPABILITY_VOICE_PRIVACY = 0x02000000;
    public static final int CAPABILITY_VOICE_PRIVACY = 0x02000000;


    /**
     * Add participant in an active or conference call option
     *
     * @hide
     */
    public static final int CAPABILITY_ADD_PARTICIPANT = 0x04000000;



    //**********************************************************************************************
    //**********************************************************************************************
    // Next CAPABILITY value: 0x04000000
    // Next CAPABILITY value: 0x08000000
    //**********************************************************************************************
    //**********************************************************************************************


    /**
    /**