Lines Matching refs:found
542 unsigned int found = geo->output.width * vou_scale_h_den[i] / in vou_adjust_input() local
545 if (found > VOU_MAX_IMAGE_WIDTH) in vou_adjust_input()
549 err = abs(found - geo->in_width); in vou_adjust_input()
553 best = found; in vou_adjust_input()
567 unsigned int found = geo->output.height * vou_scale_v_den[i] / in vou_adjust_input() local
570 if (found > img_height_max) in vou_adjust_input()
574 err = abs(found - geo->in_height); in vou_adjust_input()
578 best = found; in vou_adjust_input()
611 unsigned int found = geo->in_width * vou_scale_h_num[i] / in vou_adjust_output() local
614 if (found > VOU_MAX_IMAGE_WIDTH) in vou_adjust_output()
618 err = abs(found - geo->output.width); in vou_adjust_output()
622 best = found; in vou_adjust_output()
641 unsigned int found = geo->in_height * vou_scale_v_num[i] / in vou_adjust_output() local
644 if (found > img_height_max) in vou_adjust_output()
648 err = abs(found - geo->output.height); in vou_adjust_output()
652 best = found; in vou_adjust_output()