diff options
author | David Conrad <lessen42@gmail.com> | 2010-06-27 01:46:29 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-06-27 01:46:29 +0000 |
commit | 0ef1dbedcb37f37a9d3218c8dd72dc76a025eb19 (patch) | |
tree | 53f49159e33312db58c36b02d72989ac0c7e872f /libavcodec/vp8dsp.h | |
parent | a02bb835ace0d7bcfd187a0538d7064104bec6a9 (diff) | |
download | ffmpeg-0ef1dbedcb37f37a9d3218c8dd72dc76a025eb19.tar.gz |
VP8 bilinear filter
Originally committed as revision 23813 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8dsp.h')
-rw-r--r-- | libavcodec/vp8dsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp8dsp.h b/libavcodec/vp8dsp.h index 2cd9e7a10b..18d6916985 100644 --- a/libavcodec/vp8dsp.h +++ b/libavcodec/vp8dsp.h @@ -58,6 +58,7 @@ typedef struct VP8DSPContext { * so something like put_vp8_epel_pixels_tab[width>>3][2*!!my-(my&1)][2*!!mx-(mx&1)](..., mx, my) */ vp8_mc_func put_vp8_epel_pixels_tab[3][3][3]; + vp8_mc_func put_vp8_bilinear_pixels_tab[3][3][3]; } VP8DSPContext; void ff_put_vp8_pixels16_c(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y); |