diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2018-01-06 17:11:48 +0100 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2018-02-09 22:10:55 +0100 |
commit | 6fd110a0940f9177d33db4e98b2a66742cc29988 (patch) | |
tree | 93970af650032f7cfb11f886ed1cb16c83c206b6 /libavcodec/codec_desc.c | |
parent | 96b217f5e878fabc142fc198b1e297b624f5c17e (diff) | |
download | ffmpeg-6fd110a0940f9177d33db4e98b2a66742cc29988.tar.gz |
aptx: implement the aptX HD bluetooth codec
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 1e5d715416..15f6489278 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2858,6 +2858,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("aptX (Audio Processing Technology for Bluetooth)"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_APTX_HD, + .type = AVMEDIA_TYPE_AUDIO, + .name = "aptx_hd", + .long_name = NULL_IF_CONFIG_SMALL("aptX HD (Audio Processing Technology for Bluetooth)"), + .props = AV_CODEC_PROP_LOSSY, + }, /* subtitle codecs */ { |