Cleanup psnr.h
Change-Id: Id026e72ee655ee5bd645a89e378da0d462be367d
This commit is contained in:
parent
d1c5cd4a30
commit
38cfc45e07
@ -37,14 +37,14 @@ double compute_hbd_psnr(const YV12_BUFFER_CONFIG *source,
|
||||
const YV12_BUFFER_CONFIG *dest,
|
||||
uint32_t in_bd, uint32_t bd) {
|
||||
PSNR_STATS psnr;
|
||||
calc_highbd_psnr(source, dest, &psnr, bd, in_bd);
|
||||
vpx_calc_highbd_psnr(source, dest, &psnr, bd, in_bd);
|
||||
return psnr.psnr[0];
|
||||
}
|
||||
|
||||
double compute_psnr(const YV12_BUFFER_CONFIG *source,
|
||||
const YV12_BUFFER_CONFIG *dest) {
|
||||
PSNR_STATS psnr;
|
||||
calc_psnr(source, dest, &psnr);
|
||||
vpx_calc_psnr(source, dest, &psnr);
|
||||
return psnr.psnr[0];
|
||||
}
|
||||
|
||||
|
@ -2039,10 +2039,10 @@ static void generate_psnr_packet(VP10_COMP *cpi) {
|
||||
int i;
|
||||
PSNR_STATS psnr;
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
calc_highbd_psnr(cpi->Source, cpi->common.frame_to_show, &psnr,
|
||||
cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth);
|
||||
vpx_calc_highbd_psnr(cpi->Source, cpi->common.frame_to_show, &psnr,
|
||||
cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth);
|
||||
#else
|
||||
calc_psnr(cpi->Source, cpi->common.frame_to_show, &psnr);
|
||||
vpx_calc_psnr(cpi->Source, cpi->common.frame_to_show, &psnr);
|
||||
#endif
|
||||
|
||||
for (i = 0; i < 4; ++i) {
|
||||
@ -3938,9 +3938,9 @@ static void compute_internal_stats(VP10_COMP *cpi) {
|
||||
vpx_clear_system_state();
|
||||
// TODO(yaowu): unify these two versions into one.
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
calc_highbd_psnr(orig, recon, &psnr, cpi->td.mb.e_mbd.bd, in_bit_depth);
|
||||
vpx_calc_highbd_psnr(orig, recon, &psnr, bit_depth, in_bit_depth);
|
||||
#else
|
||||
calc_psnr(orig, recon, &psnr);
|
||||
vpx_calc_psnr(orig, recon, &psnr);
|
||||
#endif // CONFIG_VP9_HIGHBITDEPTH
|
||||
|
||||
adjust_image_stat(psnr.psnr[1], psnr.psnr[2], psnr.psnr[3],
|
||||
|
@ -2145,10 +2145,10 @@ static void generate_psnr_packet(VP9_COMP *cpi) {
|
||||
int i;
|
||||
PSNR_STATS psnr;
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
calc_highbd_psnr(cpi->Source, cpi->common.frame_to_show, &psnr,
|
||||
cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth);
|
||||
vpx_calc_highbd_psnr(cpi->Source, cpi->common.frame_to_show, &psnr,
|
||||
cpi->td.mb.e_mbd.bd, cpi->oxcf.input_bit_depth);
|
||||
#else
|
||||
calc_psnr(cpi->Source, cpi->common.frame_to_show, &psnr);
|
||||
vpx_calc_psnr(cpi->Source, cpi->common.frame_to_show, &psnr);
|
||||
#endif
|
||||
|
||||
for (i = 0; i < 4; ++i) {
|
||||
@ -4329,10 +4329,10 @@ int vp9_get_compressed_data(VP9_COMP *cpi, unsigned int *frame_flags,
|
||||
YV12_BUFFER_CONFIG *pp = &cm->post_proc_buffer;
|
||||
PSNR_STATS psnr;
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
calc_highbd_psnr(orig, recon, &psnr, cpi->td.mb.e_mbd.bd,
|
||||
in_bit_depth);
|
||||
vpx_calc_highbd_psnr(orig, recon, &psnr, cpi->td.mb.e_mbd.bd,
|
||||
in_bit_depth);
|
||||
#else
|
||||
calc_psnr(orig, recon, &psnr);
|
||||
vpx_calc_psnr(orig, recon, &psnr);
|
||||
#endif // CONFIG_VP9_HIGHBITDEPTH
|
||||
|
||||
adjust_image_stat(psnr.psnr[1], psnr.psnr[2], psnr.psnr[3],
|
||||
@ -4363,10 +4363,10 @@ int vp9_get_compressed_data(VP9_COMP *cpi, unsigned int *frame_flags,
|
||||
vpx_clear_system_state();
|
||||
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
calc_highbd_psnr(orig, pp, &psnr2, cpi->td.mb.e_mbd.bd,
|
||||
vpx_calc_highbd_psnr(orig, pp, &psnr2, cpi->td.mb.e_mbd.bd,
|
||||
cpi->oxcf.input_bit_depth);
|
||||
#else
|
||||
calc_psnr(orig, pp, &psnr2);
|
||||
vpx_calc_psnr(orig, pp, &psnr2);
|
||||
#endif // CONFIG_VP9_HIGHBITDEPTH
|
||||
|
||||
cpi->totalp_sq_error += psnr2.sse[0];
|
||||
|
@ -125,10 +125,10 @@ static int64_t get_sse(const uint8_t *a, int a_stride,
|
||||
}
|
||||
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
int64_t highbd_get_sse_shift(const uint8_t *a8, int a_stride,
|
||||
const uint8_t *b8, int b_stride,
|
||||
int width, int height,
|
||||
unsigned int input_shift) {
|
||||
static int64_t highbd_get_sse_shift(const uint8_t *a8, int a_stride,
|
||||
const uint8_t *b8, int b_stride,
|
||||
int width, int height,
|
||||
unsigned int input_shift) {
|
||||
const uint16_t *a = CONVERT_TO_SHORTPTR(a8);
|
||||
const uint16_t *b = CONVERT_TO_SHORTPTR(b8);
|
||||
int64_t total_sse = 0;
|
||||
@ -145,9 +145,9 @@ int64_t highbd_get_sse_shift(const uint8_t *a8, int a_stride,
|
||||
return total_sse;
|
||||
}
|
||||
|
||||
int64_t highbd_get_sse(const uint8_t *a, int a_stride,
|
||||
const uint8_t *b, int b_stride,
|
||||
int width, int height) {
|
||||
static int64_t highbd_get_sse(const uint8_t *a, int a_stride,
|
||||
const uint8_t *b, int b_stride,
|
||||
int width, int height) {
|
||||
int64_t total_sse = 0;
|
||||
int x, y;
|
||||
const int dw = width % 16;
|
||||
@ -206,11 +206,10 @@ int64_t vpx_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a,
|
||||
#endif // CONFIG_VP9_HIGHBITDEPTH
|
||||
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
void calc_highbd_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr,
|
||||
unsigned int bit_depth,
|
||||
unsigned int in_bit_depth) {
|
||||
void vpx_calc_highbd_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr, uint32_t bit_depth,
|
||||
uint32_t in_bit_depth) {
|
||||
const int widths[3] =
|
||||
{ a->y_crop_width, a->uv_crop_width, a->uv_crop_width };
|
||||
const int heights[3] =
|
||||
@ -260,8 +259,8 @@ void calc_highbd_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
|
||||
#endif // !CONFIG_VP9_HIGHBITDEPTH
|
||||
|
||||
void calc_psnr(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr) {
|
||||
void vpx_calc_psnr(const YV12_BUFFER_CONFIG *a, const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr) {
|
||||
static const double peak = 255.0;
|
||||
const int widths[3] = {
|
||||
a->y_crop_width, a->uv_crop_width, a->uv_crop_width };
|
||||
|
@ -42,17 +42,13 @@ int64_t vpx_get_y_sse(const YV12_BUFFER_CONFIG *a,
|
||||
#if CONFIG_VP9_HIGHBITDEPTH
|
||||
int64_t vpx_highbd_get_y_sse(const YV12_BUFFER_CONFIG *a,
|
||||
const YV12_BUFFER_CONFIG *b);
|
||||
void calc_highbd_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
void vpx_calc_highbd_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr,
|
||||
unsigned int bit_depth,
|
||||
unsigned int in_bit_depth);
|
||||
int64_t highbd_get_sse_shift(const uint8_t *a8, int a_stride,
|
||||
const uint8_t *b8, int b_stride,
|
||||
int width, int height,
|
||||
unsigned int input_shift);
|
||||
#endif
|
||||
void calc_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
void vpx_calc_psnr(const YV12_BUFFER_CONFIG *a,
|
||||
const YV12_BUFFER_CONFIG *b,
|
||||
PSNR_STATS *psnr);
|
||||
|
||||
@ -61,9 +57,6 @@ double vpx_psnrhvs(const YV12_BUFFER_CONFIG *source,
|
||||
double *phvs_y, double *phvs_u,
|
||||
double *phvs_v, uint32_t bd, uint32_t in_bd);
|
||||
|
||||
int64_t highbd_get_sse(const uint8_t *a, int a_stride,
|
||||
const uint8_t *b, int b_stride,
|
||||
int width, int height);
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user