summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-26 15:04:26 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-29 23:37:13 +0200
commit76d8f0dd143ce72b4f3de2a55f9efa9d8ffd358e (patch)
tree81405cef2019ebfca9ade1475cb5e8680db4dc92 /libavcodec/ac3dec.c
parent8089fe072e4552348a215d9fb4a0545ccf830763 (diff)
avcodec/ac3dsp: Remove unused parameter
Forgotten in fd98594a8831ce037a495b6d7e090bd8f81e83a1. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index aba8e0fb7f..340f6e1e37 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -236,7 +236,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
if (!s->fdsp)
return AVERROR(ENOMEM);
- ff_ac3dsp_init(&s->ac3dsp, avctx->flags & AV_CODEC_FLAG_BITEXACT);
+ ff_ac3dsp_init(&s->ac3dsp);
av_lfg_init(&s->dith_state, 0);
if (USE_FIXED)