Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-03 23:27:13 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-05 03:15:04 +0300
commit81b927a53bafd51b3874ae7c36c6948cc632c267 (patch)
treea4ee1131391ffd93a38a8b28ec95de5d7ba3a94e /libavcodec/opus.h
parent542c334eb5450ea8a2ef74ca3b46b3defff61c79 (diff)
avcodec/opus: Move remaining celt declarations to opus_celt.h
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/opus.h')
-rw-r--r--libavcodec/opus.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/opus.h b/libavcodec/opus.h
index a7dbe7ea8a..2dc6085207 100644
--- a/libavcodec/opus.h
+++ b/libavcodec/opus.h
@@ -73,8 +73,6 @@ enum OpusBandwidth {
typedef struct SilkContext SilkContext;
-typedef struct CeltFrame CeltFrame;
-
int ff_silk_init(AVCodecContext *avctx, SilkContext **ps, int output_channels);
void ff_silk_free(SilkContext **ps);
void ff_silk_flush(SilkContext *s);
@@ -88,10 +86,4 @@ int ff_silk_decode_superframe(SilkContext *s, OpusRangeCoder *rc,
enum OpusBandwidth bandwidth, int coded_channels,
int duration_ms);
-/* Encode or decode CELT bands */
-void ff_celt_quant_bands(CeltFrame *f, OpusRangeCoder *rc);
-
-/* Encode or decode CELT bitallocation */
-void ff_celt_bitalloc(CeltFrame *f, OpusRangeCoder *rc, int encode);
-
#endif /* AVCODEC_OPUS_H */