1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/aac/aacdec: Fix linking errors with only one decoder enabled

This is achieved by using function pointers for AAC SBR functions.
This unfortunately necessitated to use void* in
ff_aac_sbr_apply(_fixed).
Fixes ticket #10999.

Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-05-07 00:33:01 +02:00
parent b1037d4ebe
commit 2eab5a1f54
5 changed files with 25 additions and 30 deletions

View File

@ -149,11 +149,7 @@ static av_cold int che_configure(AACDecContext *ac,
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
if (che_pos) { if (che_pos) {
if (!ac->che[type][id]) { if (!ac->che[type][id]) {
int ret; int ret = ac->proc.sbr_ctx_alloc_init(ac, &ac->che[type][id], type);
if (ac->is_fixed)
ret = ff_aac_sbr_ctx_alloc_init_fixed(ac, &ac->che[type][id], type);
else
ret = ff_aac_sbr_ctx_alloc_init(ac, &ac->che[type][id], type);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
@ -170,10 +166,7 @@ static av_cold int che_configure(AACDecContext *ac,
} }
} else { } else {
if (ac->che[type][id]) { if (ac->che[type][id]) {
if (ac->is_fixed) ac->proc.sbr_ctx_close(ac->che[type][id]);
ff_aac_sbr_ctx_close_fixed(ac->che[type][id]);
else
ff_aac_sbr_ctx_close(ac->che[type][id]);
} }
av_freep(&ac->che[type][id]); av_freep(&ac->che[type][id]);
} }
@ -1114,14 +1107,11 @@ static int sample_rate_idx (int rate)
static av_cold int decode_close(AVCodecContext *avctx) static av_cold int decode_close(AVCodecContext *avctx)
{ {
AACDecContext *ac = avctx->priv_data; AACDecContext *ac = avctx->priv_data;
int is_fixed = ac->is_fixed;
void (*sbr_close)(ChannelElement *che) = is_fixed ? ff_aac_sbr_ctx_close_fixed :
ff_aac_sbr_ctx_close;
for (int type = 0; type < FF_ARRAY_ELEMS(ac->che); type++) { for (int type = 0; type < FF_ARRAY_ELEMS(ac->che); type++) {
for (int i = 0; i < MAX_ELEM_ID; i++) { for (int i = 0; i < MAX_ELEM_ID; i++) {
if (ac->che[type][i]) { if (ac->che[type][i]) {
sbr_close(ac->che[type][i]); ac->proc.sbr_ctx_close(ac->che[type][i]);
av_freep(&ac->che[type][i]); av_freep(&ac->che[type][i]);
} }
} }
@ -1136,7 +1126,7 @@ static av_cold int decode_close(AVCodecContext *avctx)
av_tx_uninit(&ac->mdct_ltp); av_tx_uninit(&ac->mdct_ltp);
// Compiler will optimize this branch away. // Compiler will optimize this branch away.
if (is_fixed) if (ac->is_fixed)
av_freep(&ac->RENAME_FIXED(fdsp)); av_freep(&ac->RENAME_FIXED(fdsp));
else else
av_freep(&ac->fdsp); av_freep(&ac->fdsp);
@ -1946,11 +1936,7 @@ static int decode_extension_payload(AACDecContext *ac, GetBitContext *gb, int cn
ac->avctx->profile = AV_PROFILE_AAC_HE; ac->avctx->profile = AV_PROFILE_AAC_HE;
} }
if (CONFIG_AAC_FIXED_DECODER && ac->is_fixed) ac->proc.sbr_decode_extension(ac, che, gb, crc_flag, cnt, elem_type);
res = ff_aac_sbr_decode_extension_fixed(ac, che, gb, crc_flag, cnt, elem_type);
else if (CONFIG_AAC_DECODER)
res = ff_aac_sbr_decode_extension(ac, che, gb, crc_flag, cnt, elem_type);
if (ac->oc[1].m4ac.ps == 1 && !ac->warned_he_aac_mono) { if (ac->oc[1].m4ac.ps == 1 && !ac->warned_he_aac_mono) {
av_log(ac->avctx, AV_LOG_VERBOSE, "Treating HE-AAC mono as stereo.\n"); av_log(ac->avctx, AV_LOG_VERBOSE, "Treating HE-AAC mono as stereo.\n");
@ -2059,14 +2045,9 @@ static void spectral_to_sample(AACDecContext *ac, int samples)
ac->dsp.update_ltp(ac, &che->ch[1]); ac->dsp.update_ltp(ac, &che->ch[1]);
} }
if (ac->oc[1].m4ac.sbr > 0) { if (ac->oc[1].m4ac.sbr > 0) {
if (CONFIG_AAC_FIXED_DECODER && ac->is_fixed) ac->proc.sbr_apply(ac, che, type,
ff_aac_sbr_apply_fixed(ac, che, type, che->ch[0].output,
(void *)che->ch[0].output, che->ch[1].output);
(void *)che->ch[1].output);
else if (CONFIG_AAC_DECODER)
ff_aac_sbr_apply(ac, che, type,
(void *)che->ch[0].output,
(void *)che->ch[1].output);
} }
} }
if (type <= TYPE_CCE) if (type <= TYPE_CCE)

View File

@ -210,6 +210,13 @@ typedef struct AACDecProc {
SingleChannelElement *sce); SingleChannelElement *sce);
int (*decode_cce)(AACDecContext *ac, GetBitContext *gb, ChannelElement *che); int (*decode_cce)(AACDecContext *ac, GetBitContext *gb, ChannelElement *che);
int (*sbr_ctx_alloc_init)(AACDecContext *ac, ChannelElement **che, int id_aac);
int (*sbr_decode_extension)(AACDecContext *ac, ChannelElement *che,
GetBitContext *gb, int crc, int cnt, int id_aac);
void (*sbr_apply)(AACDecContext *ac, ChannelElement *che,
int id_aac, void /* INTFLOAT */ *L, void /* INTFLOAT */ *R);
void (*sbr_ctx_close)(ChannelElement *che);
} AACDecProc; } AACDecProc;
/** /**

View File

@ -439,4 +439,10 @@ static av_cold void AAC_RENAME(aac_proc_init)(AACDecProc *aac_proc)
SET(decode_spectrum_and_dequant); SET(decode_spectrum_and_dequant);
SET(decode_cce); SET(decode_cce);
#undef SET #undef SET
#define SET(member) aac_proc->member = AV_JOIN(ff_aac_, AAC_RENAME(member));
SET(sbr_ctx_alloc_init);
SET(sbr_decode_extension);
SET(sbr_apply);
SET(sbr_ctx_close);
#undef SET
} }

View File

@ -90,9 +90,9 @@ int ff_aac_sbr_decode_extension_fixed(AACDecContext *ac, ChannelElement *che,
/** Apply one SBR element to one AAC element. */ /** Apply one SBR element to one AAC element. */
void ff_aac_sbr_apply(AACDecContext *ac, ChannelElement *che, void ff_aac_sbr_apply(AACDecContext *ac, ChannelElement *che,
int id_aac, float *L, float *R); int id_aac, void /* float */ *L, void /* float */ *R);
void ff_aac_sbr_apply_fixed(AACDecContext *ac, ChannelElement *che, void ff_aac_sbr_apply_fixed(AACDecContext *ac, ChannelElement *che,
int id_aac, int *L, int *R); int id_aac, void /* int */ *L, void /* int */ *R);
FF_VISIBILITY_POP_HIDDEN FF_VISIBILITY_POP_HIDDEN

View File

@ -1469,8 +1469,9 @@ static void sbr_env_estimate(AAC_FLOAT (*e_curr)[48], INTFLOAT X_high[64][40][2]
} }
void AAC_RENAME(ff_aac_sbr_apply)(AACDecContext *ac, ChannelElement *che, void AAC_RENAME(ff_aac_sbr_apply)(AACDecContext *ac, ChannelElement *che,
int id_aac, INTFLOAT* L, INTFLOAT* R) int id_aac, void *L_, void *R_)
{ {
INTFLOAT *L = L_, *R = R_;
SpectralBandReplication *sbr = get_sbr(che); SpectralBandReplication *sbr = get_sbr(che);
int downsampled = ac->oc[1].m4ac.ext_sample_rate < sbr->sample_rate; int downsampled = ac->oc[1].m4ac.ext_sample_rate < sbr->sample_rate;
int ch; int ch;