On 2025-01-10 05:06 +0100, Michael Niedermayer wrote: > This may be needed for floats > > Sponsored-by: Sovereign Tech Fund > Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > --- > libavcodec/ffv1enc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c > index 1a0413895a1..e2db1b41640 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) { > --
LGTM but s/sambols/symbols/ in the Subject/Git-short-message I suspect. Alexander _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".