From: James Zern Date: Fri, 15 May 2015 02:47:00 +0000 (-0700) Subject: vp8/common/variance*: add vp8_rtcd include X-Git-Tag: v1.5.0~676^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f80bbc0efbfd230c84c5c0f24f1e46534e5b0a21;p=libvpx vp8/common/variance*: add vp8_rtcd include silences missing prototype warnings Change-Id: I5ca198b56a5ff0cf5b93c89957526f243c04e9c8 --- diff --git a/vp8/common/variance_c.c b/vp8/common/variance_c.c index 773b655ef..dc95bfeb3 100644 --- a/vp8/common/variance_c.c +++ b/vp8/common/variance_c.c @@ -9,8 +9,9 @@ */ -#include "variance.h" +#include "./vp8_rtcd.h" #include "filter.h" +#include "variance.h" unsigned int vp8_get_mb_ss_c diff --git a/vp8/common/x86/variance_mmx.c b/vp8/common/x86/variance_mmx.c index 02e02420f..10a58b822 100644 --- a/vp8/common/x86/variance_mmx.c +++ b/vp8/common/x86/variance_mmx.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp8_rtcd.h" #include "vpx_config.h" #include "vp8/common/variance.h" #include "vpx_ports/mem.h" diff --git a/vp8/common/x86/variance_sse2.c b/vp8/common/x86/variance_sse2.c index 1fe127bf2..6c6539d8e 100644 --- a/vp8/common/x86/variance_sse2.c +++ b/vp8/common/x86/variance_sse2.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp8_rtcd.h" #include "vpx_config.h" #include "vp8/common/variance.h" #include "vpx_ports/mem.h" diff --git a/vp8/common/x86/variance_ssse3.c b/vp8/common/x86/variance_ssse3.c index 73eb90df6..d8c8da540 100644 --- a/vp8/common/x86/variance_ssse3.c +++ b/vp8/common/x86/variance_ssse3.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp8_rtcd.h" #include "vpx_config.h" #include "vp8/common/variance.h" #include "vpx_ports/mem.h"