shithub: opus

Download patch

ref: 43b47a41b12809ea3ede5516050e19328019533b
parent: b0b6d6aeac82704ebc04091e538eb84b6eae59fd
author: Mark Harris <mark.hsj@gmail.com>
date: Thu Jul 21 18:05:21 EDT 2016

Silence fixed point unused parameter warning

--- a/src/opus_encoder.c
+++ b/src/opus_encoder.c
@@ -1075,6 +1075,7 @@
 
 #ifdef FIXED_POINT
    silence = (sample_max == 0);
+   (void)lsb_depth;
 #else
    silence = (sample_max <= (opus_val16) 1 / (1 << lsb_depth));
 #endif