Home
last modified time | relevance | path

Searched refs:RKCLIP (Results 1 – 2 of 2) sorted by relevance

/rockchip-linux_mpp/mpp/vproc/iep2/
H A Diep2_ff.c87 ctx->ff_inf.frm_score = RKCLIP(ctx->ff_inf.frm_score + 1, 0, 20); in iep2_check_ffo()
88 ctx->ff_inf.fie_score = RKCLIP(ctx->ff_inf.fie_score - 1, 0, 20); in iep2_check_ffo()
90 ctx->ff_inf.frm_score = RKCLIP(ctx->ff_inf.frm_score - 1, 0, 20); in iep2_check_ffo()
91 ctx->ff_inf.fie_score = RKCLIP(ctx->ff_inf.fie_score + 1, 0, 20); in iep2_check_ffo()
134 ctx->ff_inf.tff_score = RKCLIP(ctx->ff_inf.tff_score + 1, 0, 10); in iep2_check_ffo()
135 ctx->ff_inf.bff_score = RKCLIP(ctx->ff_inf.bff_score - 1, 0, 10); in iep2_check_ffo()
137 ctx->ff_inf.tff_score = RKCLIP(ctx->ff_inf.tff_score - 1, 0, 10); in iep2_check_ffo()
138 ctx->ff_inf.bff_score = RKCLIP(ctx->ff_inf.bff_score + 1, 0, 10); in iep2_check_ffo()
H A Diep2.h35 #define RKCLIP(a, min, max) ((a < min) ? (min) : ((a > max) ? max : a)) macro