diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-16 05:47:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-16 05:59:47 +0200 |
commit | 003bf337477fb73c8bfe529fb53f8d7c09a676b1 (patch) | |
tree | 5ff183ad418769cf59bcc78de661710ddb10d86d | |
parent | 7e20f80d2cd4f29c0bfa9a58c323c21ded47af1f (diff) | |
download | ffmpeg-003bf337477fb73c8bfe529fb53f8d7c09a676b1.tar.gz |
sws: fix alignment of rgb2yuv
This should fix mingw32 fate
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 37d6900396..be5a80e73b 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -358,7 +358,7 @@ typedef struct SwsContext { uint8_t *table_gU[256 + 2*YUVRGB_TABLE_HEADROOM]; int table_gV[256 + 2*YUVRGB_TABLE_HEADROOM]; uint8_t *table_bU[256 + 2*YUVRGB_TABLE_HEADROOM]; - int32_t input_rgb2yuv_table[16+40*4]; // This table can contain both C and SIMD formatted values, teh C vales are always at the XY_IDX points + DECLARE_ALIGNED(16, int32_t, input_rgb2yuv_table)[16+40*4]; // This table can contain both C and SIMD formatted values, teh C vales are always at the XY_IDX points #define RY_IDX 0 #define GY_IDX 1 #define BY_IDX 2 |