ffmpeg | branch: master | Kacper Michajłow <kaspe...@gmail.com> | Fri Dec  6 
21:23:37 2024 +0100| [790270276225921b4d4a6e0c3ccc5fe42e9efd88] | committer: 
Leo Izen

avfilter/af_ashowinfo: fix scaling factor of replaygain peak values

Commit 8542f9c4f17125d483c40c0c5723842f1c982f81 changed replaygain peak
values to use 100k instead of UINT32_MAX as peak, with possibility of
overflow. af_ashowinfo was never updated to reflect this, so we update
it now.

Fixes: 8542f9c4f17125d483c40c0c5723842f1c982f81
Signed-off-by: Kacper Michajłow <kaspe...@gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=790270276225921b4d4a6e0c3ccc5fe42e9efd88
---

 libavfilter/af_ashowinfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/af_ashowinfo.c b/libavfilter/af_ashowinfo.c
index b83847b866..de94d4c7c2 100644
--- a/libavfilter/af_ashowinfo.c
+++ b/libavfilter/af_ashowinfo.c
@@ -120,7 +120,7 @@ static void print_peak(AVFilterContext *ctx, const char 
*str, uint32_t peak)
     if (!peak)
         av_log(ctx, AV_LOG_INFO, "unknown");
     else
-        av_log(ctx, AV_LOG_INFO, "%f", (float)peak / UINT32_MAX);
+        av_log(ctx, AV_LOG_INFO, "%f", peak / 100000.0f);
     av_log(ctx, AV_LOG_INFO, ", ");
 }
 

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to