Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-03-10 17:55:58 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 06:56:07 +0400
commit704c9874a3851edd368f0a039e261f4e8a2535c0 (patch)
tree637b6a46ff18284eebe02d52ae4fe259a3d12927 /libavcodec/vp56.h
parentd1293512cfd5c99b992afb99b153e1c60ec21be6 (diff)
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.h3
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;