Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-04-18 01:42:41 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-04-18 01:59:18 +0300
commit76d0209db482768070ae438ebdeb9359d22559af (patch)
treec3225f8121cfc6835c8a6c718e66b1c69c476415 /libavcodec
parentdb7d0d6e7c43da123106f881557b82d3deec44b5 (diff)
avcodec/intrax8: Remove duplicated chunk from ba5bcf96124a4933eef170dfe7955809d8d54a64
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/intrax8.c3
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]);
}