avcodec/intrax8: Fix assert
Commit900ce6f8c3replaced IntraX8Context.ac_vlc by IntraX8Context.ac_vlc_table, but forgot to update an av_assert2()*.cf7ed01938then replaced this with a check for j_ac_vlc[mode], but this makes no sense as j_ac_vlc is of type const VLCElem [2][2][8][]. Worse yet, mode can be up to three and then j_ac_vlc[mode] is undefined behaviour. This happened during the wmv8-x8intra FATE test. *: Since84f16bb5e6config.h was no longer auto-included in avassert.h and this disabled av_assert1() and av_assert2() in files where config.h has not been included before the inclusion of avassert.h. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -103,7 +103,7 @@ static inline void x8_select_ac_table(IntraX8Context *const w, int mode)
|
|||||||
table_index = get_bits(w->gb, 3);
|
table_index = get_bits(w->gb, 3);
|
||||||
// 2 modes use same tables
|
// 2 modes use same tables
|
||||||
w->j_ac_vlc_table[mode] = j_ac_vlc[w->quant < 13][mode >> 1][table_index];
|
w->j_ac_vlc_table[mode] = j_ac_vlc[w->quant < 13][mode >> 1][table_index];
|
||||||
av_assert2(j_ac_vlc[mode]);
|
av_assert2(w->j_ac_vlc_table[mode]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int x8_get_orient_vlc(IntraX8Context *w)
|
static inline int x8_get_orient_vlc(IntraX8Context *w)
|
||||||
|
|||||||
Reference in New Issue
Block a user