diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2017-12-17 19:53:35 +0100 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2018-03-07 22:26:53 +0100 |
commit | 4439887198025a9782f2ed52f8fda995269aad07 (patch) | |
tree | dc152252a5996d3530972b441c306863220f1410 /libavcodec/codec_desc.c | |
parent | 0b4ad86959cdd5c53474faf2c0b46e0f8a057fe1 (diff) | |
download | ffmpeg-4439887198025a9782f2ed52f8fda995269aad07.tar.gz |
sbc: implement SBC decoder (low-complexity subband codec)
This was originally based on libsbc, and was fully integrated into ffmpeg.
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 f1ba6b13ac..da7c0871a2 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2870,6 +2870,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("aptX HD (Audio Processing Technology for Bluetooth)"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_SBC, + .type = AVMEDIA_TYPE_AUDIO, + .name = "sbc", + .long_name = NULL_IF_CONFIG_SMALL("SBC (low-complexity subband codec)"), + .props = AV_CODEC_PROP_LOSSY, + }, /* subtitle codecs */ { |