diff 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
line wrap: on
line diff
--- a/mlib/dsputil_mlib.c	Fri Feb 01 13:42:08 2008 +0000
+++ b/mlib/dsputil_mlib.c	Fri Feb 01 13:49:15 2008 +0000
@@ -374,7 +374,7 @@
 
 /* swap byte order of a buffer */
 
-static void bswap_buf_mlib(uint32_t *dst, uint32_t *src, int w)
+static void bswap_buf_mlib(uint32_t *dst, const uint32_t *src, int w)
 {
   mlib_VectorReverseByteOrder_U32_U32(dst, src, w);
 }