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

Commit 69c7a29a authored by Uma Mehta's avatar Uma Mehta Committed by Gerrit - the friendly Code Review server
Browse files

msm: vidc: Update step value for bitrate control



Currently step value for V4L2_CID_MPEG_VIDEO_BITRATE
is 100 which is altering the control value while
rounding off to range.
Updating step value to 1.

Change-Id: I0729114c9146853c34af6eee5d31c3f3b89b4b86
Signed-off-by: default avatarUma Mehta <umamehta@codeaurora.org>
parent d5d55ba0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#define MIN_BIT_RATE 32000
#define MAX_BIT_RATE 300000000
#define DEFAULT_BIT_RATE 64000
#define BIT_RATE_STEP 100
#define BIT_RATE_STEP 1
#define DEFAULT_FRAME_RATE 15
#define OPERATING_FRAME_RATE_STEP (1 << 16)
#define MAX_SLICE_BYTE_SIZE ((MAX_BIT_RATE)>>3)