deinterlace: i/p switch DCT not work [1/1]

PD#SWPL-139006

Problem:
DCT not work

Solution:
add pq tune flag when check DCT

Verify:
t5m

Change-Id: Iff51c24734c242e583b06957393c8839172f1de3
Signed-off-by: qianqian.cai <qianqian.cai@amlogic.com>
This commit is contained in:
qianqian.cai
2023-09-01 19:07:28 +08:00
committed by gerrit autosubmit
parent e741690a22
commit dfd329f86c
+3
View File
@@ -1481,6 +1481,7 @@ void dcntr_check(struct vframe_s *vfm)
pcfg->n_set = 0;
pcfg->n_up = 0;
pcfg->n_rp = 0;
if (disable_di_decontour() && !pcfg->st_off) {
pcfg->st_off = 1;
@@ -1701,11 +1702,13 @@ void dcntr_check(struct vframe_s *vfm)
if (pcfg->n_bypass) {
pcfg->n_set = 0;
pcfg->n_up = 0;
pcfg->n_rp = 0;
} else {
if (chg || (dbg_dct & DI_BIT5))
pcfg->n_set = 1;
else
pcfg->n_up = 1;
pcfg->n_rp = 1;
}
dbg_dct_in(&pcfg->in);