diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-20 02:52:15 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-21 20:24:40 +0200 |
commit | fd72d8aea3fbda09e029d2ecd7564f8c98b347e3 (patch) | |
tree | fb6f951687aed296a0dcad96304ae8199636a095 /libavcodec/cavs.c | |
parent | 57f3ca20dcb104665c3c5dce04829574dc8d044f (diff) | |
download | ffmpeg-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/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index cba0a06e89..6d54e8eae5 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -793,7 +793,7 @@ av_cold int ff_cavs_init(AVCodecContext *avctx) { AVSContext *h = avctx->priv_data; - ff_blockdsp_init(&h->bdsp, avctx); + ff_blockdsp_init(&h->bdsp); ff_h264chroma_init(&h->h264chroma, 8); ff_idctdsp_init(&h->idsp, avctx); ff_videodsp_init(&h->vdsp, 8); |