[FFmpeg-cvslog] r12177 - trunk/libavcodec/dsputil.c
lorenm
subversion
Fri Feb 22 17:53:26 CET 2008
Author: lorenm
Date: Fri Feb 22 17:53:26 2008
New Revision: 12177
Log:
cleaner way of writing packed-byte constants.
suggested by Uoti Urpala
Modified:
trunk/libavcodec/dsputil.c
Modified: trunk/libavcodec/dsputil.c
==============================================================================
--- trunk/libavcodec/dsputil.c (original)
+++ trunk/libavcodec/dsputil.c Fri Feb 22 17:53:26 2008
@@ -50,8 +50,9 @@ void ff_add_png_paeth_prediction(uint8_t
uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP] = {0, };
uint32_t ff_squareTbl[512] = {0, };
-static const unsigned long pb_7f = 0x7f7f7f7f7f7f7f7fUL;
-static const unsigned long pb_80 = 0x8080808080808080UL;
+// 0x7f7f7f7f or 0x7f7f7f7f7f7f7f7f or whatever, depending on the cpu's native arithmetic size
+#define pb_7f (~0UL/255 * 0x7f)
+#define pb_80 (~0UL/255 * 0x80)
const uint8_t ff_zigzag_direct[64] = {
0, 1, 8, 16, 9, 2, 3, 10,
More information about the ffmpeg-cvslog
mailing list