[FFmpeg-cvslog] r25279 - trunk/libavutil/assert.h

michael subversion
Fri Oct 1 00:52:29 CEST 2010


Author: michael
Date: Fri Oct  1 00:52:29 2010
New Revision: 25279

Log:
typo

Modified:
   trunk/libavutil/assert.h

Modified: trunk/libavutil/assert.h
==============================================================================
--- trunk/libavutil/assert.h	Thu Sep 30 23:57:31 2010	(r25278)
+++ trunk/libavutil/assert.h	Fri Oct  1 00:52:29 2010	(r25279)
@@ -41,7 +41,7 @@
  * These asserts() thus can be enabled without fearing speedloss.
  */
 #if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 0
-#define av_assert1(cond) av_assert_always(cond)
+#define av_assert1(cond) av_assert0(cond)
 #else
 #define av_assert1(cond) ((void)0)
 #endif
@@ -51,7 +51,7 @@
  * assert() equivalent, that does lie in speed critical code.
  */
 #if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 1
-#define av_assert2(cond) av_assert_always(cond)
+#define av_assert2(cond) av_assert0(cond)
 #else
 #define av_assert2(cond) ((void)0)
 #endif



More information about the ffmpeg-cvslog mailing list