Merge "configure: detect toolchain if not specified"
[profile/ivi/libvpx.git] / vp8 / encoder / psnr.h
1 /*
2  *  Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license and patent
5  *  grant that can be found in the LICENSE file in the root of the source
6  *  tree. All contributing project authors may be found in the AUTHORS
7  *  file in the root of the source tree.
8  */
9
10
11 #ifndef __INC_PSNR_H
12 #define __INC_PSNR_H
13
14 extern double vp8_mse2psnr(double Samples, double Peak, double Mse);
15 extern double vp8_calc_psnr(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest, double *YPsnr, double *UPsnr, double *VPsnr, double *sq_error);
16
17 #endif