summaryrefslogtreecommitdiff
path: root/libavcodec/vp8dsp.h
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-06-27 01:46:29 +0000
committerDavid Conrad <lessen42@gmail.com>2010-06-27 01:46:29 +0000
commit0ef1dbedcb37f37a9d3218c8dd72dc76a025eb19 (patch)
tree53f49159e33312db58c36b02d72989ac0c7e872f /libavcodec/vp8dsp.h
parenta02bb835ace0d7bcfd187a0538d7064104bec6a9 (diff)
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.h1
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);