diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-12 16:24:37 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-12 16:24:37 +0000 |
commit | 3ba69a15c680596feeef1d213ce2b85823dde985 (patch) | |
tree | f0921738d1342b2c1edd70c69cd54a8bd771d9a4 /libavutil/avutil.h | |
parent | 62d75662391733cb97edfe1ed000afe2360bc0f3 (diff) | |
download | ffmpeg-3ba69a15c680596feeef1d213ce2b85823dde985.tar.gz |
Implement av_bmg_next(), a Box-Muller Gaussian random generator.
See the thread:
"[FFmpeg-devel] [PATCH] Box-Muller gaussian generator".
Originally committed as revision 20808 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index d799211ffc..0a398680f4 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -35,8 +35,8 @@ #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) #define LIBAVUTIL_VERSION_MAJOR 50 -#define LIBAVUTIL_VERSION_MINOR 5 -#define LIBAVUTIL_VERSION_MICRO 1 +#define LIBAVUTIL_VERSION_MINOR 6 +#define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |