diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-06 00:53:31 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-07 13:20:58 +0200 |
commit | 1f6b9cc31d086860c7a7887685bed321fe3843f4 (patch) | |
tree | 255e95c24141197df11f2e837950e1d172423e17 /libavcodec/ppc | |
parent | f8ea0eb6ff5719a3ff2a60454dd0a2b07aa6dbe2 (diff) | |
download | ffmpeg-1f6b9cc31d086860c7a7887685bed321fe3843f4.tar.gz |
Replace some nonstandard DEBUG_* preprocessor directives by plain DEBUG.
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/h264_template_altivec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/ppc/h264_template_altivec.c b/libavcodec/ppc/h264_template_altivec.c index 020d7c7023..2a8f4bf672 100644 --- a/libavcodec/ppc/h264_template_altivec.c +++ b/libavcodec/ppc/h264_template_altivec.c @@ -18,8 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -//#define DEBUG_ALIGNMENT -#ifdef DEBUG_ALIGNMENT +#ifdef DEBUG #define ASSERT_ALIGNED(ptr) assert(((unsigned long)ptr&0x0000000F)); #else #define ASSERT_ALIGNED(ptr) ; |