Move picture-sse2.c to src/inline-optimizations/.

- Having it in the src dir even though it's not a module on it's own breaks
  the scons build script. It's probably better to have these a little bit
  separated from the normal code anyway.
This commit is contained in:
Ari Koivula 2014-04-28 19:25:42 +03:00
parent d66f809734
commit 4e7e40054f
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
* \file
*/
#include "picture.h"
#include "../picture.h"
#include <immintrin.h>
#ifdef __SSE2__

View file

@ -770,7 +770,7 @@ static unsigned hor_sad(const pixel *pic_data, const pixel *ref_data,
#if defined(__SSE2__)
#include "picture-sse2.c"
#include "inline-optimizations/picture-sse2.c"
#elif defined(__ALTIVEC__)
#include "picture-altivec.c"
#else