Lines Matching refs:strength
34 const int strength = ff_h263_loop_filter_strength[qscale]; in h263_h_loop_filter_c() local
44 if (d < -2 * strength) in h263_h_loop_filter_c()
46 else if (d < -strength) in h263_h_loop_filter_c()
47 d1 = -2 * strength - d; in h263_h_loop_filter_c()
48 else if (d < strength) in h263_h_loop_filter_c()
50 else if (d < 2 * strength) in h263_h_loop_filter_c()
51 d1 = 2 * strength - d; in h263_h_loop_filter_c()
77 const int strength = ff_h263_loop_filter_strength[qscale]; in h263_v_loop_filter_c() local
87 if (d < -2 * strength) in h263_v_loop_filter_c()
89 else if (d < -strength) in h263_v_loop_filter_c()
90 d1 = -2 * strength - d; in h263_v_loop_filter_c()
91 else if (d < strength) in h263_v_loop_filter_c()
93 else if (d < 2 * strength) in h263_v_loop_filter_c()
94 d1 = 2 * strength - d; in h263_v_loop_filter_c()