summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-01-10 00:53:21 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-01-10 00:53:21 +0000
commitbff6ecaa9c707f31be6143946df3a7ac88ee6c9e (patch)
tree31177d5bc6974946ce8efb2061b9003159f7c0af /libavcodec/mpegvideo.h
parent5a2408385979a543dd86752fafe5724fd8fbbaf4 (diff)
AC table reset (memset) optimization - patch by Michael Niedermayer <michaelni@gmx.at>
Originally committed as revision 251 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index e653edb9b4..9a74b7999c 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -75,6 +75,7 @@ typedef struct MpegEncContext {
int mb_skiped; /* MUST BE SET only during DECODING */
UINT8 *mbskip_table; /* used to avoid copy if macroblock
skipped (for black regions for example) */
+ UINT8 *mbintra_table; /* used to kill a few memsets */
int qscale;
int pict_type;