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

Commit 75289d54 authored by Tapas Kumar Kundu's avatar Tapas Kumar Kundu
Browse files

msm: vidc: Increase CBR_VFR limit upto 720p@30fps



Currently CBR_VFR (CBR = constant bitrate, VFR = variable framerate
) is enabled upto 480p@30fps due to tighter bitrate convergence.
This change increases CBR_VBR limit upto 720p@30fps.

Change-Id: I452a28cbaabd3305ae61f41a0818f983e9dac516
Signed-off-by: default avatarTapas Kumar Kundu <tkundu@codeaurora.org>
parent 71644d76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
#define FRAME_QUALITY_STEP 1
#define HEIC_GRID_DIMENSION 512
#define CBR_MB_LIMIT                           (((1280+15)/16)*((720+15)/16)*30)
#define CBR_VFR_MB_LIMIT                       (((640+15)/16)*((480+15)/16)*30)
#define CBR_VFR_MB_LIMIT                       (((1280+15)/16)*((720+15)/16)*30)

struct vb2_buf_entry {
	struct list_head list;