[FFmpeg-cvslog] avcodec/ffv1enc: Fix handling of 32bit unsigned symbols
Michael Niedermayer
git at videolan.org
Wed Jan 15 02:36:00 EET 2025
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Jan 9 21:35:06 2025 +0100| [402824e9e99461f1c9e74a6730ced40894669560] | committer: Michael Niedermayer
avcodec/ffv1enc: Fix handling of 32bit unsigned symbols
This may be needed for floats
Sponsored-by: Sovereign Tech Fund
Reviewed-by: Alexander Strasser <eclipse7 at gmx.net>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=402824e9e99461f1c9e74a6730ced40894669560
---
libavcodec/ffv1enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index 1a0413895a..e2db1b4164 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -199,7 +199,7 @@ static av_always_inline av_flatten void put_symbol_inline(RangeCoder *c,
} while (0)
if (v) {
- const int a = FFABS(v);
+ const unsigned a = is_signed ? FFABS(v) : v;
const int e = av_log2(a);
put_rac(c, state + 0, 0);
if (e <= 9) {
More information about the ffmpeg-cvslog
mailing list