Browse Source

fix compiling on ARM

thanks toshi
master
Pandora 7 years ago
parent
commit
599158e2ee
No known key found for this signature in database GPG Key ID: 55DB77C2A03E1EF5
  1. 6
      blur_simd.c

6
blur_simd.c

@ -7,12 +7,12 @@
* *
*/ */
#include "blur.h"
#include <xmmintrin.h>
// number of xmm registers needed to store input pixels for given kernel size // number of xmm registers needed to store input pixels for given kernel size
#define REGISTERS_CNT (KERNEL_SIZE + 4/2) / 4
#ifdef __SSE2__ #ifdef __SSE2__
#include "blur.h"
#define REGISTERS_CNT (KERNEL_SIZE + 4/2) / 4
#include <xmmintrin.h>
void blur_impl_horizontal_pass_sse2(uint32_t *src, uint32_t *dst, int width, int height) { void blur_impl_horizontal_pass_sse2(uint32_t *src, uint32_t *dst, int width, int height) {
uint32_t* o_src = src; uint32_t* o_src = src;
for (int row = 0; row < height; row++) { for (int row = 0; row < height; row++) {

Loading…
Cancel
Save