Home
last modified time | relevance | path

Searched refs:bscale (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/tests/checkasm/
Dvf_gblur.c41 float bscale = 1.112f; in check_horiz_slice() local
43 declare_func(void, float *dst, int w, int h, int steps, float nu, float bscale); in check_horiz_slice()
44 call_ref(dst_ref, WIDTH, HEIGHT, steps, nu, bscale); in check_horiz_slice()
45 call_new(dst_new, WIDTH, HEIGHT, steps, nu, bscale); in check_horiz_slice()
49 bench_new(dst_new, WIDTH, HEIGHT, 1, nu, bscale); in check_horiz_slice()
/third_party/ffmpeg/libavfilter/x86/
Dvf_gblur_init.c27 void ff_horiz_slice_sse4(float *ptr, int width, int height, int steps, float nu, float bscale);
28 void ff_horiz_slice_avx2(float *ptr, int width, int height, int steps, float nu, float bscale);
Dvf_gblur.asm26 ; float nu, float bscale)
32 cglobal horiz_slice, 4, 9, 9, ptr, width, height, steps, nu, bscale, x, y, step, stride, remain
64 ; p0 *= bscale
115 ; ptr[width - 1] *= bscale
/third_party/ffmpeg/libavfilter/
Dcolorspace.c144 double bscale, rscale; in ff_fill_rgb2yuv_table() local
158 bscale = 0.5 / (coeffs->cb - 1.0); in ff_fill_rgb2yuv_table()
160 rgb2yuv[1][0] = bscale * coeffs->cr; in ff_fill_rgb2yuv_table()
161 rgb2yuv[1][1] = bscale * coeffs->cg; in ff_fill_rgb2yuv_table()
Dgblur.h52 void (*horiz_slice)(float *buffer, int width, int height, int steps, float nu, float bscale);
Dvf_colormatrix.c149 double bscale, rscale; in calc_coefficients() local
156 bscale = 0.5 / (yuv_coeff[i][0][1] - 1.0); in calc_coefficients()
158 yuv_coeff[i][1][0] = bscale * yuv_coeff[i][0][0]; in calc_coefficients()
160 yuv_coeff[i][1][2] = bscale * yuv_coeff[i][0][2]; in calc_coefficients()
Dvf_gblur.c67 float nu, float bscale) in horiz_slice_c() argument
74 ptr[0] *= bscale; in horiz_slice_c()
79 ptr[x = width - 1] *= bscale; in horiz_slice_c()
/third_party/ffmpeg/libavcodec/
Dfitsdec.c168 header->data_min = (header->data_min - header->bzero) / header->bscale; in fits_read_header()
169 header->data_max = (header->data_max - header->bzero) / header->bscale; in fits_read_header()
252 t = t32 * header.bscale + header.bzero; \ in fits_decode_frame()
Dfits.h56 double bscale; member
Dfits.c36 header->bscale = 1.0; in avpriv_fits_header_init()
192 header->bscale = d; in avpriv_fits_header_parse_line()
/third_party/mesa3d/src/mesa/main/
Dpixeltransfer.c86 const GLfloat bscale = (GLfloat) (ctx->PixelMaps.BtoB.Size - 1); in _mesa_map_rgba() local
100 rgba[i][BCOMP] = bMap[(int)_mesa_lroundevenf(b * bscale)]; in _mesa_map_rgba()