build from vlc master fails with ffmpeg master f3f1a48a07d610a94
commit d94fd047 (HEAD -> master
codec/avcodec/encoder.c: In function ‘InitVideoEnc’:
codec/avcodec/encoder.c:495:28: error: ‘FF_PROFILE_AAC_LOW’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_LOW’?
495 | p_sys->i_aac_profile = FF_PROFILE_AAC_LOW;
| ^~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_LOW
codec/avcodec/encoder.c:495:28: note: each undeclared identifier is reported only once for each function it appears in
codec/avcodec/encoder.c:499:36: error: ‘FF_PROFILE_AAC_MAIN’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_MAIN’?
499 | p_sys->i_aac_profile = FF_PROFILE_AAC_MAIN;
| ^~~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_MAIN
codec/avcodec/encoder.c:503:36: error: ‘FF_PROFILE_AAC_SSR’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_SSR’?
503 | p_sys->i_aac_profile = FF_PROFILE_AAC_SSR;
| ^~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_SSR
codec/avcodec/encoder.c:505:36: error: ‘FF_PROFILE_AAC_LTP’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_LTP’?
505 | p_sys->i_aac_profile = FF_PROFILE_AAC_LTP;
| ^~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_LTP
codec/avcodec/encoder.c:508:36: error: ‘FF_PROFILE_AAC_HE_V2’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_HE_V2’?
508 | p_sys->i_aac_profile = FF_PROFILE_AAC_HE_V2;
| ^~~~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_HE_V2
codec/avcodec/encoder.c:510:36: error: ‘FF_PROFILE_AAC_HE’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_HE’?
510 | p_sys->i_aac_profile = FF_PROFILE_AAC_HE;
| ^~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_HE
codec/avcodec/encoder.c:512:36: error: ‘FF_PROFILE_AAC_LD’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_LD’?
512 | p_sys->i_aac_profile = FF_PROFILE_AAC_LD;
| ^~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_LD
codec/avcodec/encoder.c:514:36: error: ‘FF_PROFILE_AAC_ELD’ undeclared (first use in this function); did you mean ‘AV_PROFILE_AAC_ELD’?
514 | p_sys->i_aac_profile = FF_PROFILE_AAC_ELD;
| ^~~~~~~~~~~~~~~~~~
| AV_PROFILE_AAC_ELD
In file included from codec/avcodec/avcommon.h:37,
from codec/avcodec/avcodec.h:24,
from codec/avcodec/encoder.c:48:
codec/avcodec/avcommon_compat.h:73:35: error: ‘FF_MIN_BUFFER_SIZE’ undeclared (first use in this function)
73 | # define AV_INPUT_BUFFER_MIN_SIZE FF_MIN_BUFFER_SIZE
| ^~~~~~~~~~~~~~~~~~
codec/avcodec/encoder.c:1070:37: note: in expansion of macro ‘AV_INPUT_BUFFER_MIN_SIZE’
1070 | AV_INPUT_BUFFER_MIN_SIZE;
| ^~~~~~~~~~~~~~~~~~~~~~~~