diff options
author | Måns Rullgård <mans@mansr.com> | 2010-02-21 20:47:10 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-02-21 20:47:10 +0000 |
commit | 94a5218c108d078491aa69db72433f2918bdab5d (patch) | |
tree | f720bc7b9af24b34690164e51562b4f2d023f370 | |
parent | 0cb17649d81a1713eac997bc3b6a27c22a409439 (diff) | |
download | ffmpeg-94a5218c108d078491aa69db72433f2918bdab5d.tar.gz |
More accurate value for log2(10)
Originally committed as revision 21946 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/mathematics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h index 4cc3b49aad..7a72ceff96 100644 --- a/libavutil/mathematics.h +++ b/libavutil/mathematics.h @@ -36,7 +36,7 @@ #define M_LN10 2.30258509299404568402 /* log_e 10 */ #endif #ifndef M_LOG2_10 -#define M_LOG2_10 3.32192809488736218171 /* log_2 10 */ +#define M_LOG2_10 3.32192809488736234787 /* log_2 10 */ #endif #ifndef M_PI #define M_PI 3.14159265358979323846 /* pi */ |