aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/dsputil_yasm.asm
diff options
context:
space:
mode:
authorLoren Merritt <lorenm@u.washington.edu>2009-10-18 20:47:25 +0000
committerLoren Merritt <lorenm@u.washington.edu>2009-10-18 20:47:25 +0000
commite17ccf60fe4ef23424f567bfa7e58199735d43fe (patch)
tree26bd77c344ffd2fe19203b1d73f6467984c4f133 /libavcodec/x86/dsputil_yasm.asm
parent7857d3ccf6f170fec47ff288010d2f5522294da6 (diff)
downloadffmpeg-e17ccf60fe4ef23424f567bfa7e58199735d43fe.tar.gz
huffyuv: add some const qualifiers
Originally committed as revision 20290 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/dsputil_yasm.asm')
-rw-r--r--libavcodec/x86/dsputil_yasm.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/dsputil_yasm.asm b/libavcodec/x86/dsputil_yasm.asm
index d071186f5c..c3a23a9cb2 100644
--- a/libavcodec/x86/dsputil_yasm.asm
+++ b/libavcodec/x86/dsputil_yasm.asm
@@ -99,7 +99,7 @@ FLOAT_TO_INT16_INTERLEAVE6 3dn2
-; 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 @@ cglobal add_hfyu_median_prediction_mmx2, 6,6,0, dst, top, diff, w, left, left_to
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: