summaryrefslogtreecommitdiff
path: root/libavcodec/intrax8.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-07-31 09:17:44 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-03 21:10:00 +0200
commiteb5c5ae658aaf8cd7c03e1d0a6c84274d3a39a66 (patch)
tree5728fc257a7a3c723c42356cfba21e1d98d910bc /libavcodec/intrax8.c
parent8d7d52721aa893715739acde602b27dcd2adce97 (diff)
avcodec/intrax8: Remove unused IDCTDSPContext
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r--libavcodec/intrax8.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c
index 73b8aeea78..b99e8590b1 100644
--- a/libavcodec/intrax8.c
+++ b/libavcodec/intrax8.c
@@ -25,7 +25,6 @@
#include "libavutil/thread.h"
#include "avcodec.h"
#include "get_bits.h"
-#include "idctdsp.h"
#include "msmpeg4data.h"
#include "intrax8huf.h"
#include "intrax8.h"
@@ -692,7 +691,7 @@ static void x8_init_block_index(IntraX8Context *w, AVFrame *frame)
}
av_cold int ff_intrax8_common_init(AVCodecContext *avctx,
- IntraX8Context *w, IDCTDSPContext *idsp,
+ IntraX8Context *w,
int16_t (*block)[64],
int block_last_index[12],
int mb_width, int mb_height)
@@ -700,7 +699,6 @@ av_cold int ff_intrax8_common_init(AVCodecContext *avctx,
static AVOnce init_static_once = AV_ONCE_INIT;
w->avctx = avctx;
- w->idsp = *idsp;
w->mb_width = mb_width;
w->mb_height = mb_height;
w->block = block;