summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-01-31 15:45:12 -0800
committerJohann Koenig <johannkoenig@google.com>2018-03-12 19:52:11 +0000
commit025b138679dd3e5ec75bd0350542b40cffecba91 (patch)
tree4544f5905d6fc0178c227d005b9503e45ef16ed4
parent3223a3f892c9372f861b7e5f7973df6fefad0885 (diff)
downloadlibvpx-025b138679dd3e5ec75bd0350542b40cffecba91.tar
libvpx-025b138679dd3e5ec75bd0350542b40cffecba91.tar.gz
libvpx-025b138679dd3e5ec75bd0350542b40cffecba91.tar.bz2
libvpx-025b138679dd3e5ec75bd0350542b40cffecba91.zip
vp8 temporal_filter: ignore return value
Clears up static clang analysis warning regarding a dead store. Change-Id: I6a90e6fd5f2775d933c46c7553811635bd2def21
-rw-r--r--vp8/encoder/temporal_filter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vp8/encoder/temporal_filter.c b/vp8/encoder/temporal_filter.c
index 0a7d25fb0..76f99a17d 100644
--- a/vp8/encoder/temporal_filter.c
+++ b/vp8/encoder/temporal_filter.c
@@ -159,6 +159,7 @@ static int vp8_temporal_filter_find_matching_mb_c(VP8_COMP *cpi,
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? */