diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-05-28 15:52:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-29 21:56:00 +0200 |
commit | 99a319c4e7538670847ac4633ef8b0f0629deb22 (patch) | |
tree | 5896b2cac40b1e50d28d115c2cd821cc391e78a7 /libavcodec/huffyuvdsp.h | |
parent | 226700398105075d27d07b652a0b67705aa06a1e (diff) | |
download | ffmpeg-99a319c4e7538670847ac4633ef8b0f0629deb22.tar.gz |
x86: huffyuvdsp: port add_bytes to yasm
C MMX SSE2
Cycles: 2972 587 302
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffyuvdsp.h')
-rw-r--r-- | libavcodec/huffyuvdsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuvdsp.h b/libavcodec/huffyuvdsp.h index fd66f0a56e..c52dd69405 100644 --- a/libavcodec/huffyuvdsp.h +++ b/libavcodec/huffyuvdsp.h @@ -35,7 +35,7 @@ typedef struct HuffYUVDSPContext { void (*add_bytes)(uint8_t *dst /* align 16 */, uint8_t *src /* align 16 */, - int w); + intptr_t w); void (*add_hfyu_median_pred)(uint8_t *dst, const uint8_t *top, const uint8_t *diff, int w, int *left, int *left_top); |