From b987127e0e7eb90d8a0a618035a377e92f098447 Mon Sep 17 00:00:00 2001 From: arpi Date: Sat, 14 Dec 2002 17:56:35 +0000 Subject: compiler warning fixes based on patch by Dominik Mierzejewski git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8452 b3059339-0415-0410-9bf9-f77b7e298cf2 --- liba52/imdct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'liba52') diff --git a/liba52/imdct.c b/liba52/imdct.c index 8af80c5a21..ec5b132c9c 100644 --- a/liba52/imdct.c +++ b/liba52/imdct.c @@ -392,8 +392,8 @@ imdct_do_512(sample_t data[],sample_t delay[], sample_t bias) #endif #include "srfftp_3dnow.h" -const i_cmplx_t x_plus_minus_3dnow __attribute__ ((aligned (8))) = { 0x00000000UL, 0x80000000UL }; -const i_cmplx_t x_minus_plus_3dnow __attribute__ ((aligned (8))) = { 0x80000000UL, 0x00000000UL }; +const i_cmplx_t x_plus_minus_3dnow __attribute__ ((aligned (8))) = {{ 0x00000000UL, 0x80000000UL }}; +const i_cmplx_t x_minus_plus_3dnow __attribute__ ((aligned (8))) = {{ 0x80000000UL, 0x00000000UL }}; const complex_t HSQRT2_3DNOW __attribute__ ((aligned (8))) = { 0.707106781188, 0.707106781188 }; #undef HAVE_3DNOWEX -- cgit v1.2.3