shithub: libvpx

Download patch

ref: 025b138679dd3e5ec75bd0350542b40cffecba91
parent: 3223a3f892c9372f861b7e5f7973df6fefad0885
author: Johann <johannkoenig@google.com>
date: Tue Jan 31 10:45:12 EST 2017

vp8 temporal_filter: ignore return value

Clears up static clang analysis warning regarding a dead store.

Change-Id: I6a90e6fd5f2775d933c46c7553811635bd2def21

--- a/vp8/encoder/temporal_filter.c
+++ b/vp8/encoder/temporal_filter.c
@@ -159,6 +159,7 @@
   bestsme =
       vp8_hex_search(x, b, d, &best_ref_mv1_full, &d->bmi.mv, step_param, sadpb,
                      &cpi->fn_ptr[BLOCK_16X16], NULL, NULL, &best_ref_mv1);
+  (void)bestsme;  // Ignore unused return value.
 
 #if ALT_REF_SUBPEL_ENABLED
   /* Try sub-pixel MC? */