summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-11-09 21:37:48 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-11-09 21:37:48 +0000
commit9abc7e0fdc5b99e4503e22c9084195867e312222 (patch)
tree8ac15df58b6288baa986b892fa33ac1cf7fffe28 /libavcodec/vc1.h
parenta9d5a4485ae53f263f67a3804d8edabe65c955c2 (diff)
intrax8 decoder patch by "someone"
Originally committed as revision 10971 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r--libavcodec/vc1.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h
index 7412dde9b5..bc611b30ff 100644
--- a/libavcodec/vc1.h
+++ b/libavcodec/vc1.h
@@ -25,6 +25,7 @@
#include "avcodec.h"
#include "mpegvideo.h"
+#include "intrax8.h"
/** Markers used in VC-1 AP frame data */
//@{
@@ -156,6 +157,7 @@ enum COTypes {
*/
typedef struct VC1Context{
MpegEncContext s;
+ IntraX8Context x8;
int bits;
@@ -302,6 +304,7 @@ typedef struct VC1Context{
int p_frame_skipped;
int bi_type;
+ int x8_type;
} VC1Context;
#endif /* FFMPEG_VC1_H */