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-11 01:14:35 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 06:58:49 +0400
commit771ba8f206e23f753f4f8ab04d2f6251911bfd99 (patch)
treec5fa1244716070873ca17e494372171cf4c6d05d /libavcodec/snow.h
parent05dd583426db7962e610bd924e840bce78abce6c (diff)
snow: use hpeldsp instead of dsputil for half-pel functions.
Diffstat (limited to 'libavcodec/snow.h')
-rw-r--r--libavcodec/snow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h
index a3b0512490..922a48e54d 100644
--- a/libavcodec/snow.h
+++ b/libavcodec/snow.h
@@ -23,6 +23,7 @@
#define AVCODEC_SNOW_H
#include "dsputil.h"
+#include "hpeldsp.h"
#include "snow_dwt.h"
#include "rangecoder.h"
@@ -109,6 +110,7 @@ typedef struct SnowContext{
AVCodecContext *avctx;
RangeCoder c;
DSPContext dsp;
+ HpelDSPContext hdsp;
VideoDSPContext vdsp;
H264QpelContext h264qpel;
SnowDWTContext dwt;