diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-12 13:13:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-12 13:13:52 +0000 |
commit | 67309e49c0d3c046696d75ba43df008bfa2f0971 (patch) | |
tree | 293809e38da0d2c24ccf43819a5d6f0447dcfb88 /libavcodec/mpegvideo.h | |
parent | 9214855006ab4f016498d1998a6d78130e1d008a (diff) | |
download | ffmpeg-67309e49c0d3c046696d75ba43df008bfa2f0971.tar.gz |
/* align 16 */
Originally committed as revision 1454 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 147b36a3b5..e76996ae9b 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -544,14 +544,14 @@ typedef struct MpegEncContext { #define SLICE_NOEND -3 //no end marker or error found but mb count exceeded void (*dct_unquantize_mpeg1)(struct MpegEncContext *s, - DCTELEM *block, int n, int qscale); + DCTELEM *block/*align 16*/, int n, int qscale); void (*dct_unquantize_mpeg2)(struct MpegEncContext *s, - DCTELEM *block, int n, int qscale); + DCTELEM *block/*align 16*/, int n, int qscale); void (*dct_unquantize_h263)(struct MpegEncContext *s, - DCTELEM *block, int n, int qscale); + DCTELEM *block/*align 16*/, int n, int qscale); void (*dct_unquantize)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both) - DCTELEM *block, int n, int qscale); - int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow); + DCTELEM *block/*align 16*/, int n, int qscale); + int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow); void (*fdct)(DCTELEM *block/* align 16*/); void (*idct_put)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); void (*idct_add)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); |