summaryrefslogtreecommitdiff
path: root/libavcodec/vp56.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-10 06:55:58 -0700
committerMartin Storsjö <martin@martin.st>2013-04-19 23:17:33 +0300
commitcb7ecb75635d124984fbdb5a8d08cc44f93662c4 (patch)
tree3332910ca9695173f713fc9420d12669255d6ebc /libavcodec/vp56.h
parent3bd062bf7f818bcb410713a4717b65679056ed80 (diff)
vp56: Use hpeldsp instead of dsputil for half-pel functions
This makes vp5 and vp6 independent of dsputil. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r--libavcodec/vp56.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h
index 7fe6cf3eb4..553a625a17 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;