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

Commit a44c0989 authored by Mathew Inwood's avatar Mathew Inwood
Browse files

Code reformatting for upcoming automated code changes.

Adding annotations to individual fields cannot be easily done when there
are two fields defined in a single statement. Put each definition in a
statement of its own.

See go/UnsupportedAppUsage for more context.

Bug: 110868826
Test: m
Change-Id: I7c521973bd8856414b2d2e39573d887e426c69fc
parent c874462c
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,