comparison i386/snowdsp_mmx.c @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 33896780c612
children eebc7209c47f
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #include "avcodec.h" 22 #include "libavutil/x86_cpu.h"
23 #include "snow.h" 23 #include "libavcodec/avcodec.h"
24 #include "x86_cpu.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);