AvTranscoder  0.9.4
C++APIforLibav/FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VideoStat.cpp
Go to the documentation of this file.
1 #include "ProcessStat.hpp"
2 
3 #include <math.h>
4 
5 namespace avtranscoder
6 {
7 
8 double VideoStat::toPSNR(const double mse)
9 {
10  return -10.0 * log10(mse);
11 }
12 }
static double toPSNR(const double mse)
Definition: VideoStat.cpp:8