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

Commit 17ea2689 authored by Mathew Inwood's avatar Mathew Inwood Committed by android-build-merger
Browse files

Merge "Code reformatting for upcoming automated code changes." am: 43f3f60e

am: d9b640cb

Change-Id: I4e8f9adde429507c9136a4bf25ecfc1a7299ad6d
parents 1bc55c7d d9b640cb
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -43,10 +43,14 @@ public class EncoderCapabilities
    static public class VideoEncoderCap {
        // These are not modifiable externally, thus are public accessible
        public final int mCodec;                // @see android.media.MediaRecorder.VideoEncoder
        public final int mMinBitRate, mMaxBitRate;               // min and max bit rate (bps)
        public final int mMinFrameRate, mMaxFrameRate;           // min and max frame rate (fps)
        public final int mMinFrameWidth, mMaxFrameWidth;         // min and max frame width (pixel)
        public final int mMinFrameHeight, mMaxFrameHeight;       // minn and max frame height (pixel)
        public final int mMinBitRate;           // min bit rate (bps)
        public final int mMaxBitRate;           // max bit rate (bps)
        public final int mMinFrameRate;         // min frame rate (fps)
        public final int mMaxFrameRate;         // max frame rate (fps)
        public final int mMinFrameWidth;        // min frame width (pixel)
        public final int mMaxFrameWidth;        // max frame width (pixel)
        public final int mMinFrameHeight;       // min frame height (pixel)
        public final int mMaxFrameHeight;       // max frame height (pixel)

        // Private constructor called by JNI
        private VideoEncoderCap(int codec,