summaryrefslogtreecommitdiff
path: root/libavcodec/vp9dsp.c
Commit message (Collapse)AuthorAge
* avcodec/vp9: fix () in macrosMichael Niedermayer2014-06-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vp9: invert order in l[] intra prediction array.Ronald S. Bultje2014-02-09
| | | | | | The directional intra predictors either don't care about order (dc, h, dc_left, tm), or they prefer inverted order (vr, dr, hd). This allows more efficient SIMD implementations.
* avcodec/vp9dsp: remove unused stride parameter in loop_filter().Clément Bœsch2013-11-23
| | | | The stride argument is passed either as stridea or strideb.
* avcodec/vp9dsp: pass dconly bit as macro argument.Clément Bœsch2013-11-22
|
* avcodec/vp9dsp: add DC only versions for idct/idct.Clément Bœsch2013-11-22
| | | | | | | | | | | | before: ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 16.29s user 0.02s system 99% cpu 16.323 total ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 16.32s user 0.01s system 99% cpu 16.351 total ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 16.27s user 0.05s system 99% cpu 16.335 total after: ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 15.22s user 0.03s system 99% cpu 15.257 total ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 15.20s user 0.02s system 99% cpu 15.237 total ./ffmpeg -v 0 -nostats -i ~/samples/vp9/etv.webm -f null - 15.19s user 0.02s system 99% cpu 15.227 total
* avcodec/vp9dsp: fix overwrite by 1 in vert_left pred.Ronald S. Bultje2013-10-20
| | | | | | | | | | | The memset following the memcpy was silencing the problem since re-writing that same byte. Fixes CID1108597, CID1108598, (16x16) CID1108599, CID1108600, (8x8) CID1108601, CID1108602 (32x32) Signed-off-by: Clément Bœsch <u@pkh.me>
* VP9 MC (ssse3) optimizations.Ronald S. Bultje2013-10-02
| | | | Decoding time of ped1080p.webm goes from 20.7sec to 11.3sec.
* Native VP9 decoder.Ronald S. Bultje2013-10-02
Authors: Ronald S. Bultje <rsbultje gmail com>, Clement Boesch <u pkh me>