From f80bbc0efbfd230c84c5c0f24f1e46534e5b0a21 Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 14 May 2015 19:47:00 -0700 Subject: [PATCH] vp8/common/variance*: add vp8_rtcd include silences missing prototype warnings Change-Id: I5ca198b56a5ff0cf5b93c89957526f243c04e9c8 --- vp8/common/variance_c.c | 3 ++- vp8/common/x86/variance_mmx.c | 1 + vp8/common/x86/variance_sse2.c | 1 + vp8/common/x86/variance_ssse3.c | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) 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" -- 2.40.0