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

Commit 8ba6e006 authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "More video related API fixes" into mnc-dev

parents c5d6cb97 fb25533b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ public class CallIntentUtil {
    public static Intent getCallIntent(
            Uri uri, String callOrigin, PhoneAccountHandle accountHandle) {
        return getCallIntent(uri, callOrigin, accountHandle,
                VideoProfile.VideoState.AUDIO_ONLY);
                VideoProfile.STATE_AUDIO_ONLY);
    }

    /**
@@ -95,7 +95,7 @@ public class CallIntentUtil {
     */
    public static Intent getVideoCallIntent(String number, String callOrigin) {
        return getCallIntent(CallUtil.getCallUri(number), callOrigin, null,
                VideoProfile.VideoState.BIDIRECTIONAL);
                VideoProfile.STATE_BIDIRECTIONAL);
    }

    /**
@@ -105,7 +105,7 @@ public class CallIntentUtil {
    public static Intent getVideoCallIntent(
            String number, String callOrigin, PhoneAccountHandle accountHandle) {
        return getCallIntent(CallUtil.getCallUri(number), callOrigin, accountHandle,
                VideoProfile.VideoState.BIDIRECTIONAL);
                VideoProfile.STATE_BIDIRECTIONAL);
    }

    /**