diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-04-18 00:42:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-04-18 00:59:18 +0200 |
commit | 76d0209db482768070ae438ebdeb9359d22559af (patch) | |
tree | c3225f8121cfc6835c8a6c718e66b1c69c476415 /libavcodec/intrax8.c | |
parent | db7d0d6e7c43da123106f881557b82d3deec44b5 (diff) | |
download | ffmpeg-76d0209db482768070ae438ebdeb9359d22559af.tar.gz |
avcodec/intrax8: Remove duplicated chunk from ba5bcf96124a4933eef170dfe7955809d8d54a64
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 260b7eb95c..2915103c6b 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -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]); } |