From: Johann Date: Mon, 25 Oct 2010 14:07:35 +0000 (-0400) Subject: quiet compiler X-Git-Tag: v0.9.5~24^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=385865f8202a8f273d6c9920134ddfbeb2b323da;p=libvpx quiet compiler clean up compiler warnings, man in the yellow hat warnings, and start to remove unused #includes Change-Id: I6267e98d9b3024b6fb1ef2732b29067a33cb96f6 --- diff --git a/vp8/encoder/temporal_filter.c b/vp8/encoder/temporal_filter.c index 28938657f..630afdbf1 100644 --- a/vp8/encoder/temporal_filter.c +++ b/vp8/encoder/temporal_filter.c @@ -32,19 +32,8 @@ #include "vpxerrors.h" #include -#include #include -/* -#if CONFIG_RUNTIME_CPU_DETECT -#define IF_RTCD(x) (x) -#define RTCD(x) &cpi->common.rtcd.x -#else -#define IF_RTCD(x) NULL -#define RTCD(x) NULL -#endif -*/ - #define ALT_REF_MC_ENABLED 1 // dis/enable MC in AltRef filtering #define ALT_REF_SUBPEL_ENABLED 1 // dis/enable subpel in MC AltRef filtering @@ -130,8 +119,8 @@ static void apply_temporal_filter unsigned int block_size, int strength, int filter_weight, - int *accumulator, - int *count + unsigned int *accumulator, + unsigned int *count ) { int i, j, k; @@ -168,7 +157,7 @@ static void apply_temporal_filter modifier = 16 - modifier; #endif modifier *= filter_weight; - + count[k] += modifier; accumulator[k] += modifier * pixel_value; @@ -343,7 +332,7 @@ static void vp8cx_temp_blur1_c YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index]; unsigned char *dst1, *dst2; DECLARE_ALIGNED(16, unsigned char, predictor[384]); - + // Save input state unsigned char *y_buffer = mbd->pre.y_buffer; unsigned char *u_buffer = mbd->pre.u_buffer;