mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
BUG=204 TESTED=build\gyp_chromium -fninja -G msvs_version=2012 --depth=. libyuv_test.gyp & out\Release\psnr locally tested. Review URL: https://webrtc-codereview.appspot.com/1216005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@612 16f28f9a-4ce2-e073-06de-1de4eb20be90
29 lines
943 B
C
29 lines
943 B
C
/*
|
|
* Copyright 2013 The LibYuv Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
// Get PSNR for video sequence. Assuming RAW 4:2:0 Y:Cb:Cr format
|
|
|
|
#ifndef UTIL_PSNR_H_
|
|
#define UTIL_PSNR_H_
|
|
|
|
typedef unsigned char uint8;
|
|
|
|
static const double kMaxPSNR = 128.0;
|
|
|
|
// PSNR formula: psnr = 10 * log10 (Peak Signal^2 * size / sse).
|
|
// Returns 128.0 (kMaxPSNR) if sse is 0 (perfect match).
|
|
double ComputePSNR(double sse, double size);
|
|
|
|
// Computer Sum of Squared Error (SSE).
|
|
// Pass this to ComputePSNR for final result.
|
|
double ComputeSumSquareError(const uint8* org, const uint8* rec, int size);
|
|
|
|
#endif // UTIL_PSNR_H_
|