diff bitstream.c @ 8596:68e959302527 libavcodec

replace all occurrence of ENABLE_ by the corresponding CONFIG_, HAVE_ or ARCH_ and remove all ENABLE_ definitions.
author aurel
date Wed, 14 Jan 2009 17:19:17 +0000
parents d3a1ac3e227b
children 04423b2f6e0b
line wrap: on
line diff
--- a/bitstream.c	Wed Jan 14 09:26:07 2009 +0000
+++ b/bitstream.c	Wed Jan 14 17:19:17 2009 +0000
@@ -82,7 +82,7 @@
 
     if(length==0) return;
 
-    if(ENABLE_SMALL || words < 16 || put_bits_count(pb)&7){
+    if(CONFIG_SMALL || words < 16 || put_bits_count(pb)&7){
         for(i=0; i<words; i++) put_bits(pb, 16, be2me_16(srcw[i]));
     }else{
         for(i=0; put_bits_count(pb)&31; i++)