[FFmpeg-cvslog] avcodec/imm4: Remove useless ScanTable
Andreas Rheinhardt
git at videolan.org
Mon Oct 24 02:41:14 EEST 2022
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Wed Oct 19 18:42:05 2022 +0200| [0d53d92e3a94a89582f4ee7aa37c3cb54b573b3a] | committer: Andreas Rheinhardt
avcodec/imm4: Remove useless ScanTable
Also rename the scantable variable to idct_permutation
to better reflect what it actually is.
Reviewed-by: Peter Ross <pross at xvid.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0d53d92e3a94a89582f4ee7aa37c3cb54b573b3a
---
libavcodec/imm4.c | 24 +++++++++---------------
1 file changed, 9 insertions(+), 15 deletions(-)
diff --git a/libavcodec/imm4.c b/libavcodec/imm4.c
index e2aa20813a..ccec5dff43 100644
--- a/libavcodec/imm4.c
+++ b/libavcodec/imm4.c
@@ -51,9 +51,8 @@ typedef struct IMM4Context {
unsigned lo;
unsigned hi;
- ScanTable intra_scantable;
- DECLARE_ALIGNED(32, int16_t, block)[6][64];
IDCTDSPContext idsp;
+ DECLARE_ALIGNED(32, int16_t, block)[6][64];
} IMM4Context;
static const uint8_t intra_cb[] = {
@@ -129,7 +128,7 @@ static int decode_block(AVCodecContext *avctx, GetBitContext *gb,
int block, int factor, int flag, int offset, int flag2)
{
IMM4Context *s = avctx->priv_data;
- const uint8_t *scantable = s->intra_scantable.permutated;
+ const uint8_t *idct_permutation = s->idsp.idct_permutation;
int i, last, len, factor2;
for (i = !flag; i < 64; i++) {
@@ -152,17 +151,17 @@ static int decode_block(AVCodecContext *avctx, GetBitContext *gb,
i += len;
if (i >= 64)
break;
- s->block[block][scantable[i]] = offset * (factor2 < 0 ? -1 : 1) + factor * factor2;
+ s->block[block][idct_permutation[i]] = offset * (factor2 < 0 ? -1 : 1) + factor * factor2;
if (last)
break;
}
if (s->hi == 2 && flag2 && block < 4) {
if (flag)
- s->block[block][scantable[0]] *= 2;
- s->block[block][scantable[1]] *= 2;
- s->block[block][scantable[8]] *= 2;
- s->block[block][scantable[16]] *= 2;
+ s->block[block][idct_permutation[0]] *= 2;
+ s->block[block][idct_permutation[1]] *= 2;
+ s->block[block][idct_permutation[8]] *= 2;
+ s->block[block][idct_permutation[16]] *= 2;
}
return 0;
@@ -172,7 +171,7 @@ static int decode_blocks(AVCodecContext *avctx, GetBitContext *gb,
unsigned cbp, int flag, int offset, unsigned flag2)
{
IMM4Context *s = avctx->priv_data;
- const uint8_t *scantable = s->intra_scantable.permutated;
+ const uint8_t *idct_permutation = s->idsp.idct_permutation;
int ret, i;
memset(s->block, 0, sizeof(s->block));
@@ -185,7 +184,7 @@ static int decode_blocks(AVCodecContext *avctx, GetBitContext *gb,
x = 128;
x *= 8;
- s->block[i][scantable[0]] = x;
+ s->block[i][idct_permutation[0]] = x;
}
if (cbp & (1 << (5 - i))) {
@@ -495,14 +494,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
{
static AVOnce init_static_once = AV_ONCE_INIT;
IMM4Context *s = avctx->priv_data;
- uint8_t table[64];
-
- for (int i = 0; i < 64; i++)
- table[i] = i;
ff_bswapdsp_init(&s->bdsp);
ff_idctdsp_init(&s->idsp, avctx);
- ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable, table);
s->prev_frame = av_frame_alloc();
if (!s->prev_frame)
More information about the ffmpeg-cvslog
mailing list