summaryrefslogtreecommitdiff
path: root/libavcodec/opusenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-07 16:11:45 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-08 10:18:59 +0200
commitbebd5b77af5ce730fcae73dd6c5d712700e8b19c (patch)
tree5046b2ab0e1151dee1507bce01eccbfd6d210bb0 /libavcodec/opusenc.c
parentbcfa427c8f91581c30ce2bd00f836e670d8bb365 (diff)
downloadffmpeg-bebd5b77af5ce730fcae73dd6c5d712700e8b19c.tar.gz
avcodec/opusenc_psy: Remove unused function parameter
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/opusenc.c')
-rw-r--r--libavcodec/opusenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opusenc.c b/libavcodec/opusenc.c
index 7695e95884..280425c74f 100644
--- a/libavcodec/opusenc.c
+++ b/libavcodec/opusenc.c
@@ -594,7 +594,7 @@ static int opus_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
opus_packet_assembler(s, avpkt);
/* Update the psychoacoustic system */
- ff_opus_psy_postencode_update(&s->psyctx, s->frame, s->rc);
+ ff_opus_psy_postencode_update(&s->psyctx, s->frame);
/* Remove samples from queue and skip if needed */
ff_af_queue_remove(&s->afq, s->packet.frames*frame_size, &avpkt->pts, &avpkt->duration);