diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-06-09 12:41:09 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-07-07 11:03:02 +0200 |
commit | 7321614a1b29ba4e92b47c5786a1739baaa25f9b (patch) | |
tree | 20540eb0cac57308c7b9e6b099c29280a6053b27 /libavcodec | |
parent | 9ee010e73411a0432893ff82b32eab0200382994 (diff) | |
download | ffmpeg-7321614a1b29ba4e92b47c5786a1739baaa25f9b.tar.gz |
codec_desc: drop the INTRA_ONLY property from TAK
It has key frames and non-key frames, so it is not intra-only.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/codec_desc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 67e0a3055c..ced00bd34c 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -2904,7 +2904,7 @@ static const AVCodecDescriptor codec_descriptors[] = { .type = AVMEDIA_TYPE_AUDIO, .name = "tak", .long_name = NULL_IF_CONFIG_SMALL("TAK (Tom's lossless Audio Kompressor)"), - .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS, + .props = AV_CODEC_PROP_LOSSLESS, }, { .id = AV_CODEC_ID_METASOUND, |