mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
msm: vidc: Reduce max_packets count to 480
Currently max_packets is configured as 1000, but max outstanding packets will not exceed more than 480(16 clients x 30 pkts/client). Bug: 153501065 Test: camera recording/video playback Change-Id: I57a302857ce143c8c7507818e6e9e9ed1e29f327 Signed-off-by: wenchangliu <wenchangliu@google.com> Signed-off-by: UtsavBalar1231 <utsavbalar1231@gmail.com> Signed-off-by: azrim <mirzaspc@gmail.com>
This commit is contained in:
parent
30f831e5ce
commit
92c2986975
@ -84,7 +84,7 @@ const struct msm_vidc_gov_data DEFAULT_BUS_VOTE = {
|
||||
.data_count = 0,
|
||||
};
|
||||
|
||||
const int max_packets = 1000;
|
||||
const int max_packets = 480; /* 16 sessions x 30 packets */
|
||||
|
||||
static void venus_hfi_pm_handler(struct work_struct *work);
|
||||
static DECLARE_DELAYED_WORK(venus_hfi_pm_work, venus_hfi_pm_handler);
|
||||
|
Loading…
x
Reference in New Issue
Block a user