comparison mlib/dsputil_mlib.c @ 6241:2799f65a24de libavcodec

const src for bswap
author michael
date Fri, 01 Feb 2008 13:49:15 +0000
parents d5ba514e3f4a
children ad2cf074632a
comparison
equal deleted inserted replaced
6240:442529fa4b73 6241:2799f65a24de
372 } 372 }
373 } 373 }
374 374
375 /* swap byte order of a buffer */ 375 /* swap byte order of a buffer */
376 376
377 static void bswap_buf_mlib(uint32_t *dst, uint32_t *src, int w) 377 static void bswap_buf_mlib(uint32_t *dst, const uint32_t *src, int w)
378 { 378 {
379 mlib_VectorReverseByteOrder_U32_U32(dst, src, w); 379 mlib_VectorReverseByteOrder_U32_U32(dst, src, w);
380 } 380 }
381 381
382 /* transformations */ 382 /* transformations */