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

Commit 311ddea5 authored by Surajit Podder's avatar Surajit Podder
Browse files

frameworks/base: Add dummy parameters for compatibility

Added dummy parameters for H265 Encoder profile and 2160p
camcorder profile for camera app to compile for both
L and KK

Change-Id: I33e971b396ea0d87d5a694281255da15a35790a6
parent 0856c09c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -120,6 +120,12 @@ public class CamcorderProfile

    public static final int QUALITY_4kDCI = 13;

    /**
    * {@hide}
    */

    public static final int QUALITY_2160P = 14;

    // Start and end of quality list
    private static final int QUALITY_LIST_START = QUALITY_LOW;
    private static final int QUALITY_LIST_END = QUALITY_4kDCI;
+2 −0
Original line number Diff line number Diff line
@@ -331,6 +331,8 @@ public class MediaRecorder
        public static final int H263 = 1;
        public static final int H264 = 2;
        public static final int MPEG_4_SP = 3;
        /** @hide */
        public static final int H265 = 4;
    }

    /**