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

Commit ea5d0216 authored by Heidi von Markham's avatar Heidi von Markham Committed by Android Git Automerger
Browse files

am 25af46b0: Merge branch \'mnc-dev\' of...

am 25af46b0: Merge branch \'mnc-dev\' of https://googleplex-android.googlesource.com/_direct/platform/frameworks/base into mnc-dev

* commit '25af46b0':
  Camera2: add missing HFR implementation
parents 3b474e52 25af46b0
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ public class CameraCaptureSessionImpl extends CameraCaptureSession {
        if (mIsConstrainedHighSpeedSession) {
            if (!isConstrainedHighSpeedRequestList(requestList)) {
                throw new IllegalArgumentException("It is only allowed to submit a constrained "
                        + "high speed request list to a constrianed high speed session!!!");
                        + "high speed request list to a constrained high speed session!!!");
            }
        }
    }
@@ -761,8 +761,7 @@ public class CameraCaptureSessionImpl extends CameraCaptureSession {

    @Override
    public boolean isConstrainedHighSpeed() {
        // TODO: to be implemented
        return false;
        return mIsConstrainedHighSpeedSession;
    }

}