From 67309e49c0d3c046696d75ba43df008bfa2f0971 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 12 Jan 2003 13:13:52 +0000 Subject: [PATCH] /* align 16 */ Originally committed as revision 1454 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 147b36a3b52..e76996ae9b6 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*/); -- 2.39.2