[MPlayer-dev-eng] [PATCH]: postproc ppc gcc-4.0 build-fixes

Guido Guenther agx at sigxcpu.org
Mon Aug 15 11:59:14 CEST 2005


On Fri, Aug 12, 2005 at 11:08:36PM +0200, Michael Niedermayer wrote:
> well, look at the code
> 
> its now:
> 
> x= {1,2,3,4} (fsf)
> x= (1,2,3,4) (apple)
> 
> there is no type anymore, i simply dont belive this code will do what 
> its supposed to do
No, actually it's:
(type) x = {1,2,3,4}
which works fine here, e.g.:
 vector int v = { 17, 19, 20, 21 };
 vec_ste( vtest, 0, r);
 vec_ste( vtest, 4, r);
 vec_ste( vtest, 8, r);
 vec_ste( vtest, 12, r);
 printf("%d %d %d %d\n",r[0],r[1], r[2], r[3]);
gives:
 17 19 20 21
Cheers,
 -- Guido




More information about the MPlayer-dev-eng mailing list