[FFmpeg-cvslog] avcodec/vlc: Replace mysterious max computation code in multi vlc
Michael Niedermayer
git at videolan.org
Fri Nov 10 03:44:14 EET 2023
ffmpeg | branch: release/6.1 | Michael Niedermayer <michael at niedermayer.cc> | Sun Oct 22 21:36:11 2023 +0200| [597d5744807dfe85808aa1f854438c0c5f0e1867] | committer: Michael Niedermayer
avcodec/vlc: Replace mysterious max computation code in multi vlc
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 8516609edde98391017fb145b4f492c01b360a03)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=597d5744807dfe85808aa1f854438c0c5f0e1867
---
libavcodec/vlc.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/libavcodec/vlc.c b/libavcodec/vlc.c
index 65883a506f..9b7a42f79a 100644
--- a/libavcodec/vlc.c
+++ b/libavcodec/vlc.c
@@ -359,7 +359,7 @@ static void add_level(VLC_MULTI_ELEM *table, const int is16bit,
unsigned* levelcnt, VLC_MULTI_ELEM *info)
{
int max_symbols = VLC_MULTI_MAX_SYMBOLS >> is16bit;
- for (int i = num-1; i > max; i--) {
+ for (int i = num-1; i >= max; i--) {
for (int j = 0; j < 2; j++) {
int newlimit, sym;
int t = j ? i-1 : i;
@@ -398,7 +398,7 @@ static int vlc_multi_gen(VLC_MULTI_ELEM *table, const VLC *single,
const int is16bit, const int nb_codes, const int numbits,
VLCcode *buf, void *logctx)
{
- int minbits, maxbits, max = nb_codes-1;
+ int minbits, maxbits, max;
unsigned count[VLC_MULTI_MAX_SYMBOLS-1] = { 0, };
VLC_MULTI_ELEM info = { { 0, }, 0, 0, };
int count0 = 0;
@@ -419,10 +419,13 @@ static int vlc_multi_gen(VLC_MULTI_ELEM *table, const VLC *single,
}
av_assert0(maxbits <= numbits);
- while (max >= nb_codes/2) {
- if (buf[max].bits+minbits > maxbits)
+ for (max = nb_codes; max > nb_codes - count0; max--) {
+ // We can only add a code that fits with the shortest other code into the table
+ // We assume the table is sorted by bits and we skip subtables which from our
+ // point of view are basically random corrupted entries
+ // If we have not a single useable vlc we end with max = nb_codes
+ if (buf[max - 1].bits+minbits > numbits)
break;
- max--;
}
for (int j = 0; j < 1<<numbits; j++) {
More information about the ffmpeg-cvslog
mailing list