[Bf-blender-cvs] [a430c68] master: Cleanup: unused defines

Campbell Barton noreply at git.blender.org
Tue May 31 16:26:31 CEST 2016


Commit: a430c688eefc8d30384d800c8850eaf205365d91
Author: Campbell Barton
Date:   Wed Jun 1 00:26:14 2016 +1000
Branches: master
https://developer.blender.org/rBa430c688eefc8d30384d800c8850eaf205365d91

Cleanup: unused defines

===================================================================

M	source/blender/imbuf/intern/IMB_anim.h

===================================================================

diff --git a/source/blender/imbuf/intern/IMB_anim.h b/source/blender/imbuf/intern/IMB_anim.h
index f476388..d89393b 100644
--- a/source/blender/imbuf/intern/IMB_anim.h
+++ b/source/blender/imbuf/intern/IMB_anim.h
@@ -83,18 +83,10 @@
 #  include <libswscale/swscale.h>
 #endif
 
-/* actually hard coded endianness */
-#define GET_BIG_LONG(x) (((uchar *) (x))[0] << 24 | ((uchar *) (x))[1] << 16 | ((uchar *) (x))[2] << 8 | ((uchar *) (x))[3])
-#define GET_LITTLE_LONG(x) (((uchar *) (x))[3] << 24 | ((uchar *) (x))[2] << 16 | ((uchar *) (x))[1] << 8 | ((uchar *) (x))[0])
-#define SWAP_L(x) (((x << 24) & 0xff000000) | ((x << 8) & 0xff0000) | ((x >> 8) & 0xff00) | ((x >> 24) & 0xff))
-#define SWAP_S(x) (((x << 8) & 0xff00) | ((x >> 8) & 0xff))
-
 /* more endianness... should move to a separate file... */
 #ifdef __BIG_ENDIAN__
-#  define GET_ID GET_BIG_LONG
 #  define LITTLE_LONG SWAP_LONG
 #else
-#  define GET_ID GET_LITTLE_LONG
 #  define LITTLE_LONG ENDIAN_NOP
 #endif




More information about the Bf-blender-cvs mailing list