comparison imgresample.c @ 4122:daae66c03857 libavcodec

Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts. patch by Steve Lhomme, slhomme divxcorp com
author diego
date Wed, 01 Nov 2006 22:39:58 +0000
parents 225d287b337f
children fbac0859753d
comparison
equal deleted inserted replaced
4121:fb40acd09af3 4122:daae66c03857
169 paddd_r2r(mm6, reg);\ 169 paddd_r2r(mm6, reg);\
170 psrad_i2r(FILTER_BITS, reg);\ 170 psrad_i2r(FILTER_BITS, reg);\
171 src_pos += src_incr;\ 171 src_pos += src_incr;\
172 } 172 }
173 173
174 #define DUMP(reg) movq_r2m(reg, tmp); printf(#reg "=%016Lx\n", tmp.uq); 174 #define DUMP(reg) movq_r2m(reg, tmp); printf(#reg "=%016"PRIx64"\n", tmp.uq);
175 175
176 /* XXX: do four pixels at a time */ 176 /* XXX: do four pixels at a time */
177 static void h_resample_fast4_mmx(uint8_t *dst, int dst_width, 177 static void h_resample_fast4_mmx(uint8_t *dst, int dst_width,
178 const uint8_t *src, int src_width, 178 const uint8_t *src, int src_width,
179 int src_start, int src_incr, int16_t *filters) 179 int src_start, int src_incr, int16_t *filters)