# HG changeset patch # User bcoudurier # Date 1148658269 0 # Node ID 458b6162fa22936c0be68cd0614655dd6877a5d0 # Parent 91811825348e8afda8315652e7c6654b5f4eea69 fix mbd bits bug, finally diff -r 91811825348e -r 458b6162fa22 mpegvideo.h --- a/mpegvideo.h Fri May 26 15:37:11 2006 +0000 +++ b/mpegvideo.h Fri May 26 15:44:29 2006 +0000 @@ -699,7 +699,7 @@ 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