diff options
author | John Koleszar <jkoleszar@google.com> | 2010-05-20 14:44:18 -0400 |
---|---|---|
committer | John Koleszar <jkoleszar@google.com> | 2010-05-21 05:53:48 -0400 |
commit | 1df0314e7b55b96ec56dd47baac68d06deff5491 (patch) | |
tree | 26e3f26006dd10a83cbaee40600f4bf8dcdea934 /vpx_scale | |
parent | 6e12cc9411d5476adc820315492ab9e175c70727 (diff) | |
download | libvpx-1df0314e7b55b96ec56dd47baac68d06deff5491.tar libvpx-1df0314e7b55b96ec56dd47baac68d06deff5491.tar.gz libvpx-1df0314e7b55b96ec56dd47baac68d06deff5491.tar.bz2 libvpx-1df0314e7b55b96ec56dd47baac68d06deff5491.zip |
configure: remove HAVE_CONFIG_H
This doesn't play well with autotools, and the preprocessor magic is
confusing and unhelpful in the vp8-only context.
Change-Id: I2fcb57e6eb7876ecb58509da608dc21f26077ff1
Diffstat (limited to 'vpx_scale')
-rw-r--r-- | vpx_scale/arm/scalesystemdependant.c | 4 | ||||
-rw-r--r-- | vpx_scale/generic/scalesystemdependant.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/vpx_scale/arm/scalesystemdependant.c b/vpx_scale/arm/scalesystemdependant.c index 3c355becc..b270a5f06 100644 --- a/vpx_scale/arm/scalesystemdependant.c +++ b/vpx_scale/arm/scalesystemdependant.c @@ -8,11 +8,9 @@ */ +#include "vpx_ports/config.h" #include "vpx_scale/vpxscale.h" -#ifdef HAVE_CONFIG_H -#include "vpx_config.h" -#endif void (*vp8_yv12_extend_frame_borders_ptr)(YV12_BUFFER_CONFIG *ybf); extern void vp8_yv12_extend_frame_borders(YV12_BUFFER_CONFIG *ybf); diff --git a/vpx_scale/generic/scalesystemdependant.c b/vpx_scale/generic/scalesystemdependant.c index 28f5c7252..542e5daa9 100644 --- a/vpx_scale/generic/scalesystemdependant.c +++ b/vpx_scale/generic/scalesystemdependant.c @@ -8,11 +8,9 @@ */ +#include "vpx_ports/config.h" #include "vpx_scale/vpxscale.h" -#ifdef HAVE_CONFIG_H -#include "vpx_config.h" -#endif void (*vp8_yv12_extend_frame_borders_ptr)(YV12_BUFFER_CONFIG *ybf); extern void vp8_yv12_extend_frame_borders(YV12_BUFFER_CONFIG *ybf); |