summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-05-26 15:44:29 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-05-26 15:44:29 +0000
commit702497f886932583410bf7c750d2f5c72a1f70c3 (patch)
treef85e0a48c72002eae45678ec6a230c90cc7ad2d2 /libavcodec/mpegvideo.h
parent16862398a2749c0a5b8e2153ea7120bcafedf8cb (diff)
fix mbd bits bug, finally
Originally committed as revision 5411 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 7fc90235bd..023e657004 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -699,7 +699,7 @@ typedef struct MpegEncContext {
short * pblocks[12];
DCTELEM (*block)[64]; ///< points to one of the following blocks
- DCTELEM (*blocks)[6][64]; // for HQ mode we need to keep the best block
+ DCTELEM (*blocks)[8][64]; // for HQ mode we need to keep the best block
int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch()
#define SLICE_OK 0
#define SLICE_ERROR -1