diff avr32/intreadwrite.h @ 993:f8db9a2bae05 libavutil

Add av_ prefix to bswap macros
author mru
date Sat, 10 Jul 2010 22:12:30 +0000
parents f849545df4e5
children
line wrap: on
line diff
--- a/avr32/intreadwrite.h	Sat Jul 10 22:09:01 2010 +0000
+++ b/avr32/intreadwrite.h	Sat Jul 10 22:12:30 2010 +0000
@@ -106,8 +106,8 @@
 }
 
 /* These two would be defined by generic code, but we need them sooner. */
-#define AV_RL32(p)    bswap_32(AV_RB32(p))
-#define AV_WL32(p, v) AV_WB32(p, bswap_32(v))
+#define AV_RL32(p)    av_bswap32(AV_RB32(p))
+#define AV_WL32(p, v) AV_WB32(p, av_bswap32(v))
 
 #define AV_WB64 AV_WB64
 static av_always_inline void AV_WB64(void *p, uint64_t v)