comparison postprocess_template.c @ 133:51571e34b760 libpostproc

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents c78bbb57f0b9
children ced16a4fbbec
comparison
equal deleted inserted replaced
132:a65cfe0fe4b2 133:51571e34b760
3512 #else 3512 #else
3513 if(mode & H_X1_FILTER) 3513 if(mode & H_X1_FILTER)
3514 horizX1Filter(dstBlock-4, stride, QP); 3514 horizX1Filter(dstBlock-4, stride, QP);
3515 else if(mode & H_DEBLOCK){ 3515 else if(mode & H_DEBLOCK){
3516 #if HAVE_ALTIVEC 3516 #if HAVE_ALTIVEC
3517 DECLARE_ALIGNED(16, unsigned char, tempBlock[272]); 3517 DECLARE_ALIGNED(16, unsigned char, tempBlock)[272];
3518 transpose_16x8_char_toPackedAlign_altivec(tempBlock, dstBlock - (4 + 1), stride); 3518 transpose_16x8_char_toPackedAlign_altivec(tempBlock, dstBlock - (4 + 1), stride);
3519 3519
3520 const int t=vertClassify_altivec(tempBlock-48, 16, &c); 3520 const int t=vertClassify_altivec(tempBlock-48, 16, &c);
3521 if(t==1) { 3521 if(t==1) {
3522 doVertLowPass_altivec(tempBlock-48, 16, &c); 3522 doVertLowPass_altivec(tempBlock-48, 16, &c);