diff asfcrypt.c @ 6248:e630da0f5861 libavformat

Add av_ prefix to bswap macros
author mru
date Sat, 10 Jul 2010 22:12:30 +0000
parents a64b9fa63635
children 6928d93146e6
line wrap: on
line diff
--- a/asfcrypt.c	Sat Jul 10 22:09:01 2010 +0000
+++ b/asfcrypt.c	Sat Jul 10 22:12:30 2010 +0000
@@ -170,7 +170,7 @@
         ms_state = multiswap_enc(ms_keys, ms_state, AV_RL64(qwords));
     multiswap_invert_keys(ms_keys);
     packetkey = (packetkey << 32) | (packetkey >> 32);
-    packetkey = le2ne_64(packetkey);
+    packetkey = av_le2ne64(packetkey);
     packetkey = multiswap_dec(ms_keys, ms_state, packetkey);
     AV_WL64(qwords, packetkey);
 }