Lines Matching refs:psnr
19 const double psnr = 10.0 * log10(samples * peak * peak / sse); in vpx_sse_to_psnr() local
20 return psnr > MAX_PSNR ? MAX_PSNR : psnr; in vpx_sse_to_psnr()
179 const YV12_BUFFER_CONFIG *b, PSNR_STATS *psnr, in vpx_calc_highbd_psnr() argument
210 psnr->sse[1 + i] = sse; in vpx_calc_highbd_psnr()
211 psnr->samples[1 + i] = samples; in vpx_calc_highbd_psnr()
212 psnr->psnr[1 + i] = vpx_sse_to_psnr(samples, peak, (double)sse); in vpx_calc_highbd_psnr()
218 psnr->sse[0] = total_sse; in vpx_calc_highbd_psnr()
219 psnr->samples[0] = total_samples; in vpx_calc_highbd_psnr()
220 psnr->psnr[0] = in vpx_calc_highbd_psnr()
227 PSNR_STATS *psnr) { in vpx_calc_psnr() argument
246 psnr->sse[1 + i] = sse; in vpx_calc_psnr()
247 psnr->samples[1 + i] = samples; in vpx_calc_psnr()
248 psnr->psnr[1 + i] = vpx_sse_to_psnr(samples, peak, (double)sse); in vpx_calc_psnr()
254 psnr->sse[0] = total_sse; in vpx_calc_psnr()
255 psnr->samples[0] = total_samples; in vpx_calc_psnr()
256 psnr->psnr[0] = in vpx_calc_psnr()