diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-07 16:11:45 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-08 10:18:59 +0200 |
commit | bebd5b77af5ce730fcae73dd6c5d712700e8b19c (patch) | |
tree | 5046b2ab0e1151dee1507bce01eccbfd6d210bb0 /libavcodec/opusenc_psy.h | |
parent | bcfa427c8f91581c30ce2bd00f836e670d8bb365 (diff) | |
download | ffmpeg-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_psy.h')
-rw-r--r-- | libavcodec/opusenc_psy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opusenc_psy.h b/libavcodec/opusenc_psy.h index 67e96b2fa5..ee58b0cdf9 100644 --- a/libavcodec/opusenc_psy.h +++ b/libavcodec/opusenc_psy.h @@ -98,7 +98,7 @@ typedef struct OpusPsyContext { int ff_opus_psy_process (OpusPsyContext *s, OpusPacketInfo *p); void ff_opus_psy_celt_frame_init (OpusPsyContext *s, CeltFrame *f, int index); int ff_opus_psy_celt_frame_process(OpusPsyContext *s, CeltFrame *f, int index); -void ff_opus_psy_postencode_update (OpusPsyContext *s, CeltFrame *f, OpusRangeCoder *rc); +void ff_opus_psy_postencode_update (OpusPsyContext *s, CeltFrame *f); int ff_opus_psy_init(OpusPsyContext *s, AVCodecContext *avctx, struct FFBufQueue *bufqueue, OpusEncOptions *options); |