[Bf-blender-cvs] [e38e45b] compositor-2016: Cleanup: unused defines

Campbell Barton noreply at git.blender.org
Wed Jun 8 21:51:56 CEST 2016


Commit: e38e45bfe9af5e9d795430ee6960ce6cf9fb4b56
Author: Campbell Barton
Date:   Wed Jun 1 00:26:14 2016 +1000
Branches: compositor-2016
https://developer.blender.org/rBe38e45bfe9af5e9d795430ee6960ce6cf9fb4b56

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