diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-26 01:54:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-26 01:56:01 +0200 |
commit | f75c5f07a975d1809bf28b330ffd1d3dd430c96a (patch) | |
tree | 8a44253f46ab8a2034826cea76ef9adcf5a28c80 | |
parent | 5fe808578ca34f2b15b66f1cd249aa5c5cc337e4 (diff) | |
download | ffmpeg-f75c5f07a975d1809bf28b330ffd1d3dd430c96a.tar.gz |
diracyasm: fix win64
Fixes Ticket1412
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/diracdsp_yasm.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/diracdsp_yasm.asm b/libavcodec/x86/diracdsp_yasm.asm index 049bf16dbf..f5f32b3a0e 100644 --- a/libavcodec/x86/diracdsp_yasm.asm +++ b/libavcodec/x86/diracdsp_yasm.asm @@ -130,7 +130,7 @@ cglobal dirac_hpel_filter_h_%1, 3,3,8, dst, src, width %macro PUT_RECT 1 ; void put_rect_clamped(uint8_t *dst, int dst_stride, int16_t *src, int src_stride, int width, int height) -cglobal put_signed_rect_clamped_%1, 5,7,3, dst, dst_stride, src, src_stride, w, dst2, src2 +cglobal put_signed_rect_clamped_%1, 5,9,3, dst, dst_stride, src, src_stride, w, dst2, src2 mova m0, [pb_128] add wd, (mmsize-1) and wd, ~(mmsize-1) @@ -171,7 +171,7 @@ cglobal put_signed_rect_clamped_%1, 5,7,3, dst, dst_stride, src, src_stride, w, %macro ADD_RECT 1 ; void add_rect_clamped(uint8_t *dst, uint16_t *src, int stride, int16_t *idwt, int idwt_stride, int width, int height) -cglobal add_rect_clamped_%1, 7,7,3, dst, src, stride, idwt, idwt_stride, w, h +cglobal add_rect_clamped_%1, 7,9,3, dst, src, stride, idwt, idwt_stride, w, h mova m0, [pw_32] add wd, (mmsize-1) and wd, ~(mmsize-1) |