diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-07-16 19:54:25 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-07-16 19:54:25 +0000 |
commit | 889b2c26eec123ef6ec82319b83b9985f5b7cb52 (patch) | |
tree | c0b0deb142ae1260451afc22b7618602959a7c5a /libavcodec/x86/vp8dsp.asm | |
parent | 2356a7834bd235f111fdd76b2612f9155b47a2a8 (diff) | |
download | ffmpeg-889b2c26eec123ef6ec82319b83b9985f5b7cb52.tar.gz |
Revert 24270, it contained some stuff that shouldn't have been in there.
Originally committed as revision 24271 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/vp8dsp.asm')
-rw-r--r-- | libavcodec/x86/vp8dsp.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/vp8dsp.asm b/libavcodec/x86/vp8dsp.asm index f0a45456dd..5507508e5b 100644 --- a/libavcodec/x86/vp8dsp.asm +++ b/libavcodec/x86/vp8dsp.asm @@ -1374,7 +1374,7 @@ SIMPLE_LOOPFILTER sse2, v, 3 SIMPLE_LOOPFILTER sse2, h, 6 ;----------------------------------------------------------------------------- -; void vp8_h/v_loop_filter<size>_inner_<opt>(uint8_t *dst, [uint8_t *v,] int stride, +; void vp8_h/v_loop_filter<size>_inner_<opt>(uint8_t *dst, int stride, ; int flimE, int flimI, int hev_thr); ;----------------------------------------------------------------------------- @@ -1382,6 +1382,7 @@ SIMPLE_LOOPFILTER sse2, h, 6 cglobal vp8_%2_loop_filter16_inner_%1, 5, %3, %4 %define dst_reg r0 %define mstride_reg r1 +%define stride_reg r2 %define E_reg r2 %define I_reg r3 %define hev_thr_reg r4 |