comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/image/JPEGDecoder.d @ 36:d46287db17ed

rakefile reorg, swt win phobosification
author Frank Benoit <benoit@tionex.de>
date Tue, 24 Mar 2009 08:48:41 +0100
parents 950d84783eac
children 9f4c18c268b2
comparison
equal deleted inserted replaced
35:634e4380db78 36:d46287db17ed
2945 /* Mark multiplier table not yet set up for any method */ 2945 /* Mark multiplier table not yet set up for any method */
2946 idct.cur_method[ci] = -1; 2946 idct.cur_method[ci] = -1;
2947 } 2947 }
2948 } 2948 }
2949 2949
2950 static final int CONST_BITS = 13; 2950 static const int CONST_BITS = 13;
2951 static final int PASS1_BITS = 2; 2951 static const int PASS1_BITS = 2;
2952 static final int RANGE_MASK =(MAXJSAMPLE * 4 + 3); 2952 static const int RANGE_MASK =(MAXJSAMPLE * 4 + 3);
2953 static void jpeg_idct_islow (jpeg_decompress_struct cinfo, jpeg_component_info compptr, 2953 static void jpeg_idct_islow (jpeg_decompress_struct cinfo, jpeg_component_info compptr,
2954 short[] coef_block, 2954 short[] coef_block,
2955 byte[][] output_buf, int output_buf_offset, int output_col) 2955 byte[][] output_buf, int output_buf_offset, int output_col)
2956 { 2956 {
2957 int tmp0, tmp1, tmp2, tmp3; 2957 int tmp0, tmp1, tmp2, tmp3;