diff options
author | Andrew D'Addesio <modchipv12@gmail.com> | 2012-09-18 19:02:14 -0600 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-09-27 10:48:35 +0200 |
commit | 2a3d82ab467183fd108f451a85ca06ebc2a57e2c (patch) | |
tree | 4e83230db66783e350c8c6619888f3073f8ab636 /libavcodec/codec_desc.c | |
parent | 0575772fa04e77fbb3755ad1cb8f040713c1e0d7 (diff) | |
download | ffmpeg-2a3d82ab467183fd108f451a85ca06ebc2a57e2c.tar.gz |
Add Opus codec id and codec description.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/codec_desc.c')
-rw-r--r-- | libavcodec/codec_desc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 51fc1714d1..818a35e804 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2105,6 +2105,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("iLBC (Internet Low Bitrate Codec)"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_OPUS, + .type = AVMEDIA_TYPE_AUDIO, + .name = "opus", + .long_name = NULL_IF_CONFIG_SMALL("Opus (Opus Interactive Audio Codec)"), + .props = AV_CODEC_PROP_LOSSY, + }, /* subtitle codecs */ { |