summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-10-22 12:01:21 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-22 12:01:21 +0000
commit45686da26db54f1ca7195b360230574f7be3b2f3 (patch)
tree662936a1109d8c76b5dd8d557afe05d42206a5e9 /libavcodec/mpegvideo.h
parent642ccefbc8293b010fafaa9b112051b57aa1af3d (diff)
move blocks away MpegEncContext (7.4 -> 5.8k)
Originally committed as revision 2413 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 b7eed584f3..af01cba210 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -657,7 +657,7 @@ typedef struct MpegEncContext {
uint8_t *ptr_lastgob;
DCTELEM (*block)[64]; ///< points to one of the following blocks
- DCTELEM blocks[2][6][64] __align8; // for HQ mode we need to keep the best block
+ DCTELEM (*blocks)[6][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