/third_party/ffmpeg/tests/checkasm/ |
H A D | vf_gblur.c | 41 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, float *localbuf); in check_horiz_slice() 44 call_ref(dst_ref, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice() 45 call_new(dst_new, WIDTH, HEIGHT, steps, nu, bscale, localbuf); in check_horiz_slice() 49 bench_new(dst_new, WIDTH, HEIGHT, 1, nu, bscale, localbuf); in check_horiz_slice() 56 float bscale = 1.112f; in check_verti_slice() local 59 int column_end, int steps, float nu, float bscale); in check_verti_slice() 60 call_ref(dst_ref, WIDTH, HEIGHT, 0, WIDTH, steps, nu, bscale); in check_verti_slice() 61 call_new(dst_new, WIDTH, HEIGHT, 0, WIDTH, steps, nu, bscale); in check_verti_slice() 65 bench_new(dst_new, WIDTH, HEIGHT, 0, WIDTH, 1, nu, bscale); in check_verti_slice() [all...] |
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_gblur_init.c | 27 void ff_horiz_slice_sse4(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 28 void ff_horiz_slice_avx2(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 29 void ff_horiz_slice_avx512(float *ptr, int width, int height, int steps, float nu, float bscale, float *localbuf); 36 int steps, float nu, float bscale); 38 int steps, float nu, float bscale);
|
H A D | vf_gblur.asm | 430 ; float nu, float bscale) 442 cglobal horiz_slice, 5, 12, mmnum, 0-mmsize*4, buffer, width, height, steps, nu, bscale, \ 445 cglobal horiz_slice, 4, 9, 9, ptr, width, height, steps, nu, bscale, x, y, step, stride, remain 453 VBROADCASTSS m1, bscalem ; bscale 460 VBROADCASTSS m1, xmm1 ; bscale 593 mulps m3, m1 ; p0 *= bscale 614 mulps m3, m1 ; p0 *= bscale 663 ; p0 *= bscale 714 ; ptr[width - 1] *= bscale 847 ; int column_end, int steps, float nu, float bscale); [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | gblur.h | 54 void (*horiz_slice)(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf); 56 float nu, float bscale);
|
H A D | vf_gblur_init.h | 46 float nu, float bscale, float *localbuf) in horiz_slice_c() 52 ptr[0] *= bscale; in horiz_slice_c() 57 ptr[x = width - 1] *= bscale; in horiz_slice_c() 45 horiz_slice_c(float *buffer, int width, int height, int steps, float nu, float bscale, float *localbuf) horiz_slice_c() argument
|
H A D | colorspace.c | 128 double bscale, rscale; in ff_fill_rgb2yuv_table() local 143 bscale = 0.5 / (cb - 1.0); in ff_fill_rgb2yuv_table() 145 rgb2yuv[1][0] = bscale * cr; in ff_fill_rgb2yuv_table() 146 rgb2yuv[1][1] = bscale * cg; in ff_fill_rgb2yuv_table()
|
H A D | vf_colormatrix.c | 149 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()
|
/third_party/ffmpeg/libavcodec/ |
H A D | fitsdec.c | 28 * Support all 2d images alongwith, bzero, bscale and blank keywords. 166 * instead of applying bscale and bzero to every element, in fits_read_header() 169 header->data_min = (header->data_min - header->bzero) / header->bscale; in fits_read_header() 170 header->data_max = (header->data_max - header->bzero) / header->bscale; in fits_read_header() 253 t = t32 * header.bscale + header.bzero; \ in fits_decode_frame()
|
H A D | fits.h | 56 double bscale; member
|
H A D | fits.c | 41 header->bscale = 1.0; in avpriv_fits_header_init() 197 header->bscale = d; in avpriv_fits_header_parse_line()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | pixeltransfer.c | 86 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()
|