mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-15 17:14:00 +08:00
media: venus: fix calculating mbps in calculate_inst_freq()
Currently in calculate_inst_freq(), video driver is calculating macro blocks per frame instead of macro blocks per second(mpbs). Which results frequency is always setting to lower frequency (150MHz) as per frequency table for sc7180. Hence the playback is not smooth. Corrected this by correcting the mbps calculation in calculate_inst_freq(). Signed-off-by: Mansur Alisha Shaik <mansur@codeaurora.org> Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
eff5ce02e1
commit
b57cf6a0a8
@ -938,7 +938,7 @@ static unsigned long calculate_inst_freq(struct venus_inst *inst,
|
||||
u32 fps = (u32)inst->fps;
|
||||
u32 mbs_per_sec;
|
||||
|
||||
mbs_per_sec = load_per_instance(inst) / fps;
|
||||
mbs_per_sec = load_per_instance(inst);
|
||||
|
||||
vpp_freq = mbs_per_sec * inst->clk_data.codec_freq_data->vpp_freq;
|
||||
/* 21 / 20 is overhead factor */
|
||||
|
Loading…
Reference in New Issue
Block a user