diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-09-07 13:58:53 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-09-12 11:34:27 +0200 |
commit | 88170070c4036530b79690c70e603fdddbb021c4 (patch) | |
tree | 83345cbae3ad4de3c6c463f25f559aa8b39bebb8 /libavcodec/codec_desc.c | |
parent | 5c19cb3f924c8afafcae08916a4167e36842adcd (diff) | |
download | ffmpeg-88170070c4036530b79690c70e603fdddbb021c4.tar.gz |
avcodec: add bonk audio decoder
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 06dfe55d0f..c002480d39 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -3290,6 +3290,13 @@ static const AVCodecDescriptor codec_descriptors[] = { .long_name = NULL_IF_CONFIG_SMALL("DFPWM (Dynamic Filter Pulse Width Modulation)"), .props = AV_CODEC_PROP_LOSSY, }, + { + .id = AV_CODEC_ID_BONK, + .type = AVMEDIA_TYPE_AUDIO, + .name = "bonk", + .long_name = NULL_IF_CONFIG_SMALL("Bonk audio"), + .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + }, /* subtitle codecs */ { |