diff options
author | Martin Storsjö <martin@martin.st> | 2012-06-29 10:52:18 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-12 10:54:15 +0300 |
commit | 372597e5381c097455a7b73849254d56083eb056 (patch) | |
tree | 0d2baa273e6df9d3729f18a5c4930a17ad21d205 /libavcodec/avcodec.h | |
parent | 667fb97a650dcf9ad50327c7b51f8a95d1e16077 (diff) | |
download | ffmpeg-372597e5381c097455a7b73849254d56083eb056.tar.gz |
libavcodec: Add more AAC profiles
The numerical values of the profiles are the MPEG4 Audio Object
Type values, minus one.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a1103e903f..0c962cc423 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2714,6 +2714,10 @@ typedef struct AVCodecContext { #define FF_PROFILE_AAC_LOW 1 #define FF_PROFILE_AAC_SSR 2 #define FF_PROFILE_AAC_LTP 3 +#define FF_PROFILE_AAC_HE 4 +#define FF_PROFILE_AAC_HE_V2 28 +#define FF_PROFILE_AAC_LD 22 +#define FF_PROFILE_AAC_ELD 38 #define FF_PROFILE_DTS 20 #define FF_PROFILE_DTS_ES 30 |