Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.kickflip.sdk.av; /* w w w .jav a 2s.co m*/ /** * @hide */ public class VideoEncoderConfig { protected final int mWidth; protected final int mHeight; protected final int mBitRate; public VideoEncoderConfig(int width, int height, int bitRate) { mWidth = width; mHeight = height; mBitRate = bitRate; } public int getWidth() { return mWidth; } public int getHeight() { return mHeight; } public int getBitRate() { return mBitRate; } @Override public String toString() { return "VideoEncoderConfig: " + mWidth + "x" + mHeight + " @" + mBitRate + " bps"; } }