Commit 17b29a48 authored by bcoudurier's avatar bcoudurier

fix mbd bits bug, finally

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5411 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 707b37c0
...@@ -699,7 +699,7 @@ typedef struct MpegEncContext { ...@@ -699,7 +699,7 @@ typedef struct MpegEncContext {
short * pblocks[12]; short * pblocks[12];
DCTELEM (*block)[64]; ///< points to one of the following blocks 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() int (*decode_mb)(struct MpegEncContext *s, DCTELEM block[6][64]); // used by some codecs to avoid a switch()
#define SLICE_OK 0 #define SLICE_OK 0
#define SLICE_ERROR -1 #define SLICE_ERROR -1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment