Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 16:49:15 +0300
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 16:49:15 +0300
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){