diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-10 06:55:58 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 03:56:07 +0100 |
commit | 704c9874a3851edd368f0a039e261f4e8a2535c0 (patch) | |
tree | 637b6a46ff18284eebe02d52ae4fe259a3d12927 /libavcodec/vp56.h | |
parent | d1293512cfd5c99b992afb99b153e1c60ec21be6 (diff) | |
download | ffmpeg-704c9874a3851edd368f0a039e261f4e8a2535c0.tar.gz |
vp56: use hpeldsp instead of dsputil for half-pel functions.
This makes vp5 and vp6 independent of dsputil.
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 926d28b5ae..4b0f5e11c1 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -29,6 +29,7 @@ #include "vp56data.h" #include "dsputil.h" #include "get_bits.h" +#include "hpeldsp.h" #include "bytestream.h" #include "h264chroma.h" #include "videodsp.h" @@ -95,8 +96,8 @@ typedef struct VP56Model { struct vp56_context { AVCodecContext *avctx; - DSPContext dsp; H264ChromaContext h264chroma; + HpelDSPContext hdsp; VideoDSPContext vdsp; VP3DSPContext vp3dsp; VP56DSPContext vp56dsp; |