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/proresdec2.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/proresdec2.c')
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 5ec579b994..b0d7f8d5d5 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -177,7 +177,7 @@ static av_cold int decode_init(AVCodecContext *avctx) av_log(avctx, AV_LOG_DEBUG, "Auto bitdepth precision. Use 12b decoding based on codec tag.\n"); } - ff_blockdsp_init(&ctx->bdsp, avctx); + ff_blockdsp_init(&ctx->bdsp); ret = ff_proresdsp_init(&ctx->prodsp, avctx); if (ret < 0) { av_log(avctx, AV_LOG_ERROR, "Fail to init proresdsp for bits per raw sample %d\n", avctx->bits_per_raw_sample); |