mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-08 16:19:33 +00:00
fix mbd bits bug, finally
Originally committed as revision 5411 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
16862398a2
commit
702497f886
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user