diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-09-30 21:57:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-09-30 21:57:31 +0000 |
commit | b926b6282d3b9fc8115660ae013f74f4f8c06d30 (patch) | |
tree | e8fa5303fb381da283980345d95b6f94994f6164 /libavutil/avutil.h | |
parent | 59b4e5ba49180942be3c8bb26dbf6820e015cb0d (diff) | |
download | ffmpeg-b926b6282d3b9fc8115660ae013f74f4f8c06d30.tar.gz |
av_assert() system.
With this the developer can now choose if he wants an assert always enabled or at which
compile time assert level. This can thus replace the #define NDEBUG hacks
Originally committed as revision 25278 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index a40bd957ae..e3391e58a2 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -40,7 +40,7 @@ #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) #define LIBAVUTIL_VERSION_MAJOR 50 -#define LIBAVUTIL_VERSION_MINOR 31 +#define LIBAVUTIL_VERSION_MINOR 32 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |