Searched refs:thres (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | af_sidechaincompress.c | 53 double thres; member 108 static double output_gain(double lin_slope, double ratio, double thres, in output_gain() argument 122 gain = thres; in output_gain() 125 gain = (slope - thres) / ratio + thres; in output_gain() 149 s->thres = log(s->threshold); in compressor_config_output() 156 s->compressed_knee_start = (s->knee_start - s->thres) / s->ratio + s->thres; in compressor_config_output() 157 s->compressed_knee_stop = (s->knee_stop - s->thres) / s->ratio + s->thres; in compressor_config_output() [all...] |
H A D | af_agate.c | 53 double thres; member 107 s->thres = log(lin_threshold); in agate_config_input() 120 static double output_gain(double lin_slope, double ratio, double thres, in output_gain() argument 131 gain = (slope - thres) * tratio + thres; in output_gain() 136 gain = hermite_interpolation(slope, knee_stop, knee_start, ((knee_stop - thres) * tratio + thres), knee_start, delta, 1.); in output_gain() 139 gain = hermite_interpolation(slope, knee_start, knee_stop, ((knee_start - thres) * tratio + thres), knee_stop, delta, 1.); in output_gain() 181 gain = output_gain(s->lin_slope, s->ratio, s->thres, in gate() [all...] |
H A D | vf_chromanr.c | 39 int thres; member 96 const int thres = s->thres; \ 153 if (fun(cyY, cuU, cvV) < thres && \ 197 s->thres = s->threshold * (1 << (s->depth - 8)); in filter_frame() 245 { "thres", "set y+u+v threshold", OFFSET(threshold), AV_OPT_TYPE_FLOAT, {.dbl=30}, 1, 200, VF },
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_conv.c | 825 LLVMValueRef thres; in lp_build_conv() local 831 thres = bld.zero; in lp_build_conv() 833 thres = lp_build_const_vec(gallivm, src_type, dst_min); in lp_build_conv() 835 tmp[i] = lp_build_max(&bld, tmp[i], thres); in lp_build_conv() 840 thres = bld.one; in lp_build_conv() 842 thres = lp_build_const_vec(gallivm, src_type, dst_max); in lp_build_conv() 844 tmp[i] = lp_build_min(&bld, tmp[i], thres); in lp_build_conv()
|
Completed in 4 milliseconds