avcodec/intrax8: Remove duplicated chunk from ba5bcf9612

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-04-18 00:42:41 +02:00
parent db7d0d6e7c
commit 76d0209db4
1 changed files with 0 additions and 3 deletions

View File

@ -144,9 +144,6 @@ static inline void x8_select_ac_table(IntraX8Context *const w, int mode)
table_index = get_bits(&s->gb, 3);
// 2 modes use same tables
w->j_ac_vlc[mode] = &j_ac_vlc[w->quant < 13][mode >> 1][table_index];
table_index = get_bits(&s->gb, 3);
w->j_ac_vlc[mode] = &j_ac_vlc[w->quant<13][mode>>1][table_index];//2 modes use same tables
av_assert2(w->j_ac_vlc[mode]);
}