[FFmpeg-cvslog] libfaac: add recognized profiles array
Anssi Hannula
git
Sun Jan 23 21:01:54 CET 2011
ffmpeg | branch: master | Anssi Hannula <anssi.hannula at iki.fi> | Fri Jan 21 21:58:54 2011 +0000| [890b771cc18af3e020cf96b1bb9202526c32cf8e] | committer: Michael Niedermayer
libfaac: add recognized profiles array
Signed-off-by: Janne Grunau <janne-ffmpeg at jannau.net>
(cherry picked from commit b92f76e209b6912fb36ea2e588474c48ca231dea)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=890b771cc18af3e020cf96b1bb9202526c32cf8e
---
libavcodec/libfaac.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/libavcodec/libfaac.c b/libavcodec/libfaac.c
index b220b17..e042537 100644
--- a/libavcodec/libfaac.c
+++ b/libavcodec/libfaac.c
@@ -145,6 +145,14 @@ static av_cold int Faac_encode_close(AVCodecContext *avctx)
return 0;
}
+static const AVProfile profiles[] = {
+ { FF_PROFILE_AAC_MAIN, "Main" },
+ { FF_PROFILE_AAC_LOW, "LC" },
+ { FF_PROFILE_AAC_SSR, "SSR" },
+ { FF_PROFILE_AAC_LTP, "LTP" },
+ { FF_PROFILE_UNKNOWN },
+};
+
AVCodec libfaac_encoder = {
"libfaac",
AVMEDIA_TYPE_AUDIO,
@@ -155,4 +163,5 @@ AVCodec libfaac_encoder = {
Faac_encode_close,
.sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("libfaac AAC (Advanced Audio Codec)"),
+ .profiles = NULL_IF_CONFIG_SMALL(profiles),
};
More information about the ffmpeg-cvslog
mailing list