]> git.sesse.net Git - ffmpeg/commit
vp9: add itxfm_add eob shortcuts to 10/12bpp functions.
authorRonald S. Bultje <rsbultje@gmail.com>
Sat, 10 Oct 2015 02:35:49 +0000 (22:35 -0400)
committerRonald S. Bultje <rsbultje@gmail.com>
Tue, 13 Oct 2015 15:06:01 +0000 (11:06 -0400)
commiteb4b5ff738db3655838718b743907b04dcb539ff
treee655c6403d77a2f7c1d9aee2776452bd46270635
parent488fadebbc4b6716be319c4c7bb7d7e8652a9653
vp9: add itxfm_add eob shortcuts to 10/12bpp functions.

These aren't quite as helpful as the ones in 8bpp, since over there,
we can use pmulhrsw, but here the coefficients have too many bits to
be able to take advantage of pmulhrsw. However, we can still skip
cols for which all coefs are 0, and instead just zero the input data
for the row itx. This helps a few % on overall decoding speed.
libavcodec/x86/vp9itxfm_16bpp.asm
tests/checkasm/vp9dsp.c