summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-24 01:41:12 -0800
committerDiego Biurrun <diego@biurrun.de>2014-06-23 09:58:17 -0700
commitfab9df63a3156ffe1f9490aafaea41e03ef60ddf (patch)
treef7f363e0676f471c373dc8aa90dbc6b3071065b7 /libavcodec/mpegvideo.h
parentf23d26a6864128001b03876b0b92fffe131f2060 (diff)
dsputil: Split off global motion compensation bits into a separate context
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 6409a86b1e..6fe6a4345b 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -35,6 +35,7 @@
#include "get_bits.h"
#include "h263dsp.h"
#include "hpeldsp.h"
+#include "mpegvideodsp.h"
#include "put_bits.h"
#include "ratecontrol.h"
#include "parser.h"
@@ -351,6 +352,7 @@ typedef struct MpegEncContext {
BlockDSPContext bdsp;
DSPContext dsp; ///< pointers for accelerated dsp functions
HpelDSPContext hdsp;
+ MpegVideoDSPContext mdsp;
QpelDSPContext qdsp;
VideoDSPContext vdsp;
H263DSPContext h263dsp;