summaryrefslogtreecommitdiff
path: root/libavcodec/opusenc.h
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-12-04 08:55:45 +0000
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-12-04 10:51:19 +0000
commitce87e630fa009d0bf78cd7a7599e6efc221e6543 (patch)
treea0dab6973b6b5c9b0ff994b28fc51afcaac0152c /libavcodec/opusenc.h
parent86fda8be3f3892c48474a319e0ef7509dc137e3e (diff)
opus_celt: deduplicate band quantization/dequantization function
No point in having the same code twice to do exactly the same thing. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/opusenc.h')
-rw-r--r--libavcodec/opusenc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opusenc.h b/libavcodec/opusenc.h
index 3273d0a9a2..56e4af67e3 100644
--- a/libavcodec/opusenc.h
+++ b/libavcodec/opusenc.h
@@ -51,6 +51,6 @@ typedef struct OpusPacketInfo {
int frames;
} OpusPacketInfo;
-void ff_celt_enc_bitalloc(OpusRangeCoder *rc, CeltFrame *f);
+void ff_celt_enc_bitalloc(CeltFrame *f, OpusRangeCoder *rc);
#endif /* AVCODEC_OPUSENC_H */