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

Commit 43f3f60e authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Code reformatting for upcoming automated code changes."

parents bd249a19 a44c0989
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,