comparison x86/snowdsp_mmx.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 6bf01d174630
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
23 #include "libavcodec/avcodec.h" 23 #include "libavcodec/avcodec.h"
24 #include "libavcodec/snow.h" 24 #include "libavcodec/snow.h"
25 25
26 void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){ 26 void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width){
27 const int w2= (width+1)>>1; 27 const int w2= (width+1)>>1;
28 DECLARE_ALIGNED_16(IDWTELEM, temp[width>>1]); 28 DECLARE_ALIGNED_16(IDWTELEM, temp)[width>>1];
29 const int w_l= (width>>1); 29 const int w_l= (width>>1);
30 const int w_r= w2 - 1; 30 const int w_r= w2 - 1;
31 int i; 31 int i;
32 32
33 { // Lift 0 33 { // Lift 0