diff mbox series

[FFmpeg-devel] avcodec/wmavoice: use av_clipd for double values

Message ID 20240710152848.1207-1-kasper93@gmail.com
State New
Headers show
Series [FFmpeg-devel] avcodec/wmavoice: use av_clipd for double values | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Kacper Michajlow July 10, 2024, 3:28 p.m. UTC
Fixes Clang warning.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
---
 libavcodec/wmavoice.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer Aug. 6, 2024, 10:26 p.m. UTC | #1
On Wed, Jul 10, 2024 at 05:28:48PM +0200, Kacper Michajłow wrote:
> Fixes Clang warning.
> 
> Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
> ---
>  libavcodec/wmavoice.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

will apply

thx

[...]
diff mbox series

Patch

diff --git a/libavcodec/wmavoice.c b/libavcodec/wmavoice.c
index 258c71330c..3db73773b7 100644
--- a/libavcodec/wmavoice.c
+++ b/libavcodec/wmavoice.c
@@ -655,7 +655,7 @@  static void calc_input_response(WMAVoiceContext *s, float *lpcs_src,
         lpcs[n] = angle_mul * pwr;
 
         /* 70.57 =~ 1/log10(1.0331663) */
-        idx = av_clipf((pwr * gain_mul - 0.0295) * 70.570526123, 0, INT_MAX / 2);
+        idx = av_clipd((pwr * gain_mul - 0.0295) * 70.570526123, 0, INT_MAX / 2);
 
         if (idx > 127) { // fall back if index falls outside table range
             coeffs[n] = wmavoice_energy_table[127] *