ref: 264c174fca0845dc50b40b22cf77084da3a70330
parent: bc08689fa54898487f67ad48ffb42dedf5175a12
author: James Zern <[email protected]>
date: Wed May 4 11:09:05 EDT 2016
vp9_noise_estimate.c: make function static enable_noise_estimation() is local to this module Change-Id: Id736c419387ca1959695dd327ce164bec029b597
--- a/vp9/encoder/vp9_noise_estimate.c
+++ b/vp9/encoder/vp9_noise_estimate.c
@@ -39,7 +39,7 @@
ne->num_frames_estimate = 20;
}
-int enable_noise_estimation(VP9_COMP *const cpi) {
+static int enable_noise_estimation(VP9_COMP *const cpi) {
// Enable noise estimation if denoising is on.
#if CONFIG_VP9_TEMPORAL_DENOISING
if (cpi->oxcf.noise_sensitivity > 0)