aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/asvdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-20 02:52:15 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-21 20:24:40 +0200
commitfd72d8aea3fbda09e029d2ecd7564f8c98b347e3 (patch)
treefb6f951687aed296a0dcad96304ae8199636a095 /libavcodec/asvdec.c
parent57f3ca20dcb104665c3c5dce04829574dc8d044f (diff)
downloadffmpeg-fd72d8aea3fbda09e029d2ecd7564f8c98b347e3.tar.gz
avcodec/blockdsp: Remove unused AVCodecContext parameter
Possible since be95df12bb06b183c8d2aea3b0831fdf05466cf3. Reviewed-by: RĂ©mi Denis-Courmont <remi@remlab.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/asvdec.c')
-rw-r--r--libavcodec/asvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/asvdec.c b/libavcodec/asvdec.c
index c8c50cc8d4..4ca370d1ec 100644
--- a/libavcodec/asvdec.c
+++ b/libavcodec/asvdec.c
@@ -292,7 +292,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
}
ff_asv_common_init(avctx);
- ff_blockdsp_init(&a->bdsp, avctx);
+ ff_blockdsp_init(&a->bdsp);
ff_idctdsp_init(&a->idsp, avctx);
ff_init_scantable(a->idsp.idct_permutation, &a->scantable, ff_asv_scantab);
avctx->pix_fmt = AV_PIX_FMT_YUV420P;