diff x86/dsputil_yasm.asm @ 10431:546b7ebeaf07 libavcodec

huffyuv: add some const qualifiers
author lorenm
date Sun, 18 Oct 2009 20:47:25 +0000
parents 12c8175d6db5
children 276b3a342389
line wrap: on
line diff
--- a/x86/dsputil_yasm.asm	Sun Oct 18 20:10:10 2009 +0000
+++ b/x86/dsputil_yasm.asm	Sun Oct 18 20:47:25 2009 +0000
@@ -99,7 +99,7 @@
 
 
 
-; void ff_add_hfyu_median_prediction_mmx2(uint8_t *dst, uint8_t *top, uint8_t *diff, int w, int *left, int *left_top)
+; void ff_add_hfyu_median_prediction_mmx2(uint8_t *dst, const uint8_t *top, const uint8_t *diff, int w, int *left, int *left_top)
 cglobal add_hfyu_median_prediction_mmx2, 6,6,0, dst, top, diff, w, left, left_top
     movq    mm0, [topq]
     movq    mm2, mm0
@@ -197,7 +197,7 @@
     RET
 %endmacro
 
-; int ff_add_hfyu_left_prediction(uint8_t *dst, uint8_t *src, int w, int left)
+; int ff_add_hfyu_left_prediction(uint8_t *dst, const uint8_t *src, int w, int left)
 INIT_MMX
 cglobal add_hfyu_left_prediction_ssse3, 3,3,7, dst, src, w, left
 .skip_prologue: