From 8c53d39e7f0604127bfc96fa1182c8abe3847ac6 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sat, 15 Dec 2012 09:46:02 -0800 Subject: lavc: introduce VideoDSPContext Move some functions from dsputil. The idea is that videodsp contains functions that are useful for a large and varied set of video decoders. Currently, it contains emulated_edge_mc() and prefetch(). Signed-off-by: Luca Barbato --- libavcodec/vp56.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 9be2eabdf9..431d1a9465 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -30,6 +30,7 @@ #include "dsputil.h" #include "get_bits.h" #include "bytestream.h" +#include "videodsp.h" #include "vp3dsp.h" #include "vp56dsp.h" @@ -94,6 +95,7 @@ typedef struct VP56Model { struct vp56_context { AVCodecContext *avctx; DSPContext dsp; + VideoDSPContext vdsp; VP3DSPContext vp3dsp; VP56DSPContext vp56dsp; ScanTable scantable; -- cgit v1.2.3