summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 13:49:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 13:49:15 +0000
commit96711ecff9ccfe9d124548416394a86902fdc90e (patch)
treecfb1d919382af85ac743417b6277eaec95880b49 /libavcodec/dsputil.c
parent2ec38612383389fbd73267297002ff927af60f2a (diff)
const src for bswap
Originally committed as revision 11732 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index d9e0127e4f..abd588bec5 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -214,7 +214,7 @@ static int pix_norm1_c(uint8_t * pix, int line_size)
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){