configure: set WEBP_HAVE_AVX2 when available

this is used to set WEBP_USE_AVX2 in files where the build flag won't be
used, i.e., dsp/enc.c, which enables VP8EncDspInitAVX2() to be called

Change-Id: I362f4ba39ca40d3e07a081292d5f743c649d9d7f
This commit is contained in:
James Zern
2014-06-03 23:29:23 -07:00
parent a2ac8a420e
commit 230a055501
3 changed files with 16 additions and 6 deletions

View File

@ -14,6 +14,10 @@
#ifndef WEBP_DSP_DSP_H_
#define WEBP_DSP_DSP_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "../webp/types.h"
#ifdef __cplusplus
@ -40,7 +44,7 @@ extern "C" {
#define WEBP_USE_SSE2
#endif
#if defined(__AVX2__)
#if defined(__AVX2__) || defined(WEBP_HAVE_AVX2)
#define WEBP_USE_AVX2
#endif