diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-10 06:55:58 -0700 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-19 23:17:33 +0300 |
commit | cb7ecb75635d124984fbdb5a8d08cc44f93662c4 (patch) | |
tree | 3332910ca9695173f713fc9420d12669255d6ebc /libavcodec/vp56.h | |
parent | 3bd062bf7f818bcb410713a4717b65679056ed80 (diff) | |
download | ffmpeg-cb7ecb75635d124984fbdb5a8d08cc44f93662c4.tar.gz |
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.h | 3 |
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; |