mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
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:
parent
d66f809734
commit
4e7e40054f
|
@ -21,7 +21,7 @@
|
|||
* \file
|
||||
*/
|
||||
|
||||
#include "picture.h"
|
||||
#include "../picture.h"
|
||||
#include <immintrin.h>
|
||||
|
||||
#ifdef __SSE2__
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue