diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 02:28:03 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-29 13:41:09 +0200 |
commit | 9b57995cdd489a4cff51dcc1a1f08ac77ec5a58c (patch) | |
tree | dd8b608a79337599d69e24a472ff060d859b2a20 | |
parent | 9fa888c02801fff2e8817c24068f5296bbe60000 (diff) | |
download | ffmpeg-9b57995cdd489a4cff51dcc1a1f08ac77ec5a58c.tar.gz |
intrax8: Drop MB emulation code
This is already performed in init_context_frame().
-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 3bd8807f8d..4e30a9ec23 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -828,9 +828,6 @@ int ff_intrax8_decode_picture(IntraX8Context *const w, Picture *pict, w->dest[1] += 8; w->dest[2] += 8; - /* emulate MB info in the relevant tables */ - s->mbskip_table[mb_xy] = 0; - s->mbintra_table[mb_xy] = 1; pict->qscale_table[mb_xy] = w->quant; mb_xy++; } |