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

Commit dce6ac9c authored by Arun Menon's avatar Arun Menon Committed by Matt Wagantall
Browse files

msm: vidc: Update max intra refresh mbs size



Without this change, V4l2 driver client will not be
able to set the full range of values while setting
Intra Refresh CIR mbs to driver.

Change-Id: I404d895f8ec3ecca82c08aad27b0e51b7d1e7156
Signed-off-by: default avatarArun Menon <avmenon@codeaurora.org>
parent 1c35e72d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -25,13 +25,13 @@
#define DEFAULT_BIT_RATE 64000
#define BIT_RATE_STEP 100
#define DEFAULT_FRAME_RATE 15
#define MAX_SLICE_BYTE_SIZE 1024
#define MIN_SLICE_BYTE_SIZE 1024
#define MAX_SLICE_MB_SIZE 300
#define MAX_SLICE_BYTE_SIZE ((MAX_BIT_RATE)>>3)
#define MIN_SLICE_BYTE_SIZE 512
#define MAX_SLICE_MB_SIZE ((4096 * 2304) >> 8)
#define I_FRAME_QP 26
#define P_FRAME_QP 28
#define B_FRAME_QP 30
#define MAX_INTRA_REFRESH_MBS 300
#define MAX_INTRA_REFRESH_MBS ((4096 * 2304) >> 8)
#define MAX_NUM_B_FRAMES 4
#define MAX_LTR_FRAME_COUNT 10