aboutsummaryrefslogtreecommitdiff
path: root/files/util/psnr_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'files/util/psnr_main.cc')
-rw-r--r--files/util/psnr_main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/util/psnr_main.cc b/files/util/psnr_main.cc
index a930b202..8b9fd972 100644
--- a/files/util/psnr_main.cc
+++ b/files/util/psnr_main.cc
@@ -248,13 +248,13 @@ bool UpdateMetrics(uint8_t* ch_org,
int number_of_frames,
metric* cur_distortion_psnr,
metric* distorted_frame,
- bool do_psnr) {
+ bool compute_psnr) {
const int uv_offset = (do_swap_uv ? uv_size : 0);
const uint8_t* const u_org = ch_org + y_size + uv_offset;
const uint8_t* const u_rec = ch_rec + y_size;
const uint8_t* const v_org = ch_org + y_size + (uv_size - uv_offset);
const uint8_t* const v_rec = ch_rec + y_size + uv_size;
- if (do_psnr) {
+ if (compute_psnr) {
#ifdef HAVE_JPEG
double y_err = static_cast<double>(
libyuv::ComputeSumSquareError(ch_org, ch_rec, y_size));