summaryrefslogtreecommitdiff
path: root/libavcodec/svq1enc.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-02-08 02:59:58 +0100
committerDiego Biurrun <diego@biurrun.de>2014-07-17 09:07:10 -0700
commit2d60444331fca1910510038dd3817bea885c2367 (patch)
tree51ac937c7e051b03c7cc8e39b079a37f18dd09b0 /libavcodec/svq1enc.h
parenta578b0407dc983aecd72028e1127062689b67089 (diff)
dsputil: Split motion estimation compare bits off into their own context
Diffstat (limited to 'libavcodec/svq1enc.h')
-rw-r--r--libavcodec/svq1enc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq1enc.h b/libavcodec/svq1enc.h
index 1fe2815f19..516e875657 100644
--- a/libavcodec/svq1enc.h
+++ b/libavcodec/svq1enc.h
@@ -25,9 +25,9 @@
#include "libavutil/frame.h"
#include "avcodec.h"
-#include "dsputil.h"
#include "get_bits.h"
#include "hpeldsp.h"
+#include "me_cmp.h"
#include "mpegvideo.h"
#include "put_bits.h"
@@ -37,7 +37,7 @@ typedef struct SVQ1EncContext {
* of MpegEncContext, so this will be removed then. */
MpegEncContext m;
AVCodecContext *avctx;
- DSPContext dsp;
+ MECmpContext mecc;
HpelDSPContext hdsp;
AVFrame *current_picture;
AVFrame *last_picture;