summaryrefslogtreecommitdiff
path: root/libavcodec/intrax8.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-26 22:45:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-26 23:04:15 +0200
commit9a0aa8d02a313e815234bd854f9225a97ac996f7 (patch)
tree54b70e09dd2bf2110526cd215495b94f16a0b5e1 /libavcodec/intrax8.h
parent039c2b7828dafba7d2e860bc1fd45a14dd72f076 (diff)
avcodec/intrax8: fix regression with wmv3
This also decreases dependancies between intrax8 and the outside Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/intrax8.h')
-rw-r--r--libavcodec/intrax8.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h
index 40d689a93c..9981785403 100644
--- a/libavcodec/intrax8.h
+++ b/libavcodec/intrax8.h
@@ -22,6 +22,7 @@
#include "get_bits.h"
#include "mpegvideo.h"
#include "intrax8dsp.h"
+#include "wmv2dsp.h"
typedef struct IntraX8Context {
VLC * j_ac_vlc[4];//they point to the static j_mb_vlc
@@ -32,6 +33,8 @@ typedef struct IntraX8Context {
//set by ff_intrax8_common_init
uint8_t * prediction_table;//2*(mb_w*2)
ScanTable scantable[3];
+ WMV2DSPContext wdsp;
+ uint8_t idct_permutation[64];
//set by the caller codec
MpegEncContext * s;
IntraX8DSPContext dsp;