aac: move aacdec.c to aac/aacdec.c

This commit is contained in:
Lynne 2024-03-21 08:20:43 +01:00
parent 551ce16b59
commit ae7c6cc17d
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
5 changed files with 2443 additions and 2508 deletions

View File

@ -180,7 +180,7 @@ OBJS-$(CONFIG_WMV2DSP) += wmv2dsp.o
OBJS-$(CONFIG_ZERO12V_DECODER) += 012v.o
OBJS-$(CONFIG_A64MULTI_ENCODER) += a64multienc.o elbg.o
OBJS-$(CONFIG_A64MULTI5_ENCODER) += a64multienc.o elbg.o
OBJS-$(CONFIG_AAC_DECODER) += aacdec.o aactab.o \
OBJS-$(CONFIG_AAC_DECODER) += aactab.o \
aacsbr.o aacps_common.o aacps_float.o \
kbdwin.o \
sbrdsp.o aacpsdsp_float.o cbrt_data.o

File diff suppressed because it is too large Load Diff

View File

@ -339,10 +339,11 @@ struct AACDecContext {
#define fdsp RENAME_FIXED(fdsp)
#endif
extern const struct AVClass ff_aac_decoder_class;
extern const AACDecDSP aac_dsp;
extern const AACDecDSP aac_dsp_fixed;
int ff_aac_decode_init_common(struct AVCodecContext *avctx);
int ff_aac_decode_close(struct AVCodecContext *avctx);
extern const AACDecProc aac_proc;
extern const AACDecProc aac_proc_fixed;
void ff_aacdec_init_mips(AACDecContext *c);

View File

@ -335,7 +335,7 @@ const FFCodec ff_aac_latm_decoder = {
.p.id = AV_CODEC_ID_AAC_LATM,
.priv_data_size = sizeof(struct LATMContext),
.init = latm_decode_init,
.close = ff_aac_decode_close,
.close = decode_close,
FF_CODEC_DECODE_CB(latm_decode_frame),
.p.sample_fmts = (const enum AVSampleFormat[]) {
AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE

File diff suppressed because it is too large Load Diff