diff dsputil.c @ 6241:2799f65a24de libavcodec

const src for bswap
author michael
date Fri, 01 Feb 2008 13:49:15 +0000
parents dfdff1ca78a7
children 0a403ade8c81
line wrap: on
line diff
--- a/dsputil.c	Fri Feb 01 13:42:08 2008 +0000
+++ b/dsputil.c	Fri Feb 01 13:49:15 2008 +0000
@@ -214,7 +214,7 @@
     return s;
 }
 
-static void bswap_buf(uint32_t *dst, uint32_t *src, int w){
+static void bswap_buf(uint32_t *dst, const uint32_t *src, int w){
     int i;
 
     for(i=0; i+8<=w; i+=8){