ffmpeg | branch: master | Michael Niedermayer <mich...@niedermayer.cc> | Wed Oct 16 14:43:04 2024 +0200| [c314a68d0462bff9a7a1fae37b71f98dcb4e7c04] | committer: Michael Niedermayer
avcodec/rangecoder: Do not loop renormalization Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c314a68d0462bff9a7a1fae37b71f98dcb4e7c04 --- libavcodec/rangecoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h index 110908d6bd..2248161bca 100644 --- a/libavcodec/rangecoder.h +++ b/libavcodec/rangecoder.h @@ -106,7 +106,7 @@ static inline void put_rac(RangeCoder *c, uint8_t *const state, int bit) *state = c->one_state[*state]; } - while (c->range < 0x100) + if (c->range < 0x100) renorm_encoder(c); } _______________________________________________ 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".