comparison x86/snowdsp_mmx.c @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children b57409c0c286
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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