diff x86/dsputilenc_mmx.c @ 10431:546b7ebeaf07 libavcodec

huffyuv: add some const qualifiers
author lorenm
date Sun, 18 Oct 2009 20:47:25 +0000
parents 289dd8daf4ee
children 34a65026fa06
line wrap: on
line diff
--- a/x86/dsputilenc_mmx.c	Sun Oct 18 20:10:10 2009 +0000
+++ b/x86/dsputilenc_mmx.c	Sun Oct 18 20:47:25 2009 +0000
@@ -902,7 +902,7 @@
         dst[i+0] = src1[i+0]-src2[i+0];
 }
 
-static void sub_hfyu_median_prediction_mmx2(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top){
+static void sub_hfyu_median_prediction_mmx2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int w, int *left, int *left_top){
     x86_reg i=0;
     uint8_t l, lt;