diff options
author | Anssi Hannula <anssi.hannula@iki.fi> | 2011-01-21 22:58:55 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-21 23:11:24 +0000 |
commit | f4096bf6eeddc605457192476dbbf110d4cc6140 (patch) | |
tree | 16d886b16afe36998f3ed9f6ea39a7a5529cfa22 /libavcodec | |
parent | 69915b48d6a787e569826eecb6c3b34ec19aeccd (diff) | |
download | ffmpeg-f4096bf6eeddc605457192476dbbf110d4cc6140.tar.gz |
dca: add profile names
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dca.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c index 64a81d577c..1e05561f25 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -1866,6 +1866,15 @@ static av_cold int dca_decode_end(AVCodecContext * avctx) return 0; } +static const AVProfile profiles[] = { + { FF_PROFILE_DTS, "DTS" }, + { FF_PROFILE_DTS_ES, "DTS-ES" }, + { FF_PROFILE_DTS_96_24, "DTS 96/24" }, + { FF_PROFILE_DTS_HD_HRA, "DTS-HD HRA" }, + { FF_PROFILE_DTS_HD_MA, "DTS-HD MA" }, + { FF_PROFILE_UNKNOWN }, +}; + AVCodec dca_decoder = { .name = "dca", .type = AVMEDIA_TYPE_AUDIO, @@ -1876,4 +1885,5 @@ AVCodec dca_decoder = { .close = dca_decode_end, .long_name = NULL_IF_CONFIG_SMALL("DCA (DTS Coherent Acoustics)"), .capabilities = CODEC_CAP_CHANNEL_CONF, + .profiles = NULL_IF_CONFIG_SMALL(profiles), }; |