Searched defs:in_bd (Results 1 - 5 of 5) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
H A Dpsnrhvs.c252 uint32_t in_bd) {
260 assert(bd >= in_bd);
262 bd_shift = bd - in_bd;
274 return convert_score_db(psnrhvs, 1.0, in_bd);
249 vpx_psnrhvs(const YV12_BUFFER_CONFIG *src, const YV12_BUFFER_CONFIG *dest, double *y_psnrhvs, double *u_psnrhvs, double *v_psnrhvs, uint32_t bd, uint32_t in_bd) argument
H A Dfastssim.c473 uint32_t in_bd) {
477 assert(bd >= in_bd);
478 bd_shift = bd - in_bd;
482 source->y_crop_height, in_bd, bd_shift);
485 source->uv_crop_height, in_bd, bd_shift);
488 source->uv_crop_height, in_bd, bd_shift);
470 vpx_calc_fastssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *ssim_y, double *ssim_u, double *ssim_v, uint32_t bd, uint32_t in_bd) argument
H A Dssim.c434 uint32_t bd, uint32_t in_bd) {
439 assert(bd >= in_bd);
440 shift = bd - in_bd;
444 source->y_crop_height, in_bd, shift);
448 source->uv_crop_height, in_bd, shift);
452 source->uv_crop_height, in_bd, shift);
432 vpx_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight, uint32_t bd, uint32_t in_bd) argument
/external/libvpx/libvpx/tools/
H A Dtiny_ssim.c545 uint32_t bd, uint32_t in_bd) {
550 assert(bd >= in_bd);
551 shift = bd - in_bd;
555 in_bd, shift);
559 source->uv_crop_height, in_bd, shift);
563 source->uv_crop_height, in_bd, shift);
543 highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight, uint32_t bd, uint32_t in_bd) argument
/external/libpng/contrib/libtests/
H A Dpngvalid.c6760 const png_byte in_bd = dp->this.bit_depth; local
6808 if (in_ct == PNG_COLOR_TYPE_PALETTE || in_bd < 16)
6811 in_sample_depth = in_bd;
6832 transform_row(pp, std, in_ct, in_bd, y);
6843 image_pixel_init(&in_pixel, std, in_ct, in_bd, x, dp->this.palette,
10165 const png_byte in_bd = dp->this.bit_depth; local
10228 init_validate_info(&vi, dp, pp, in_ct==3?8:in_bd, out_ct==3?8:out_bd);
10231 || in_bd != out_bd || in_ct != out_ct || vi.do_background;
10252 transform_row(pp, std, in_ct, in_bd, y);
10264 in_ct == 3 ? sample(std, 3, in_bd,
[all...]

Completed in 484 milliseconds