diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-22 22:36:23 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 07:08:59 +0200 |
commit | 63a5e83de8189372fcf8c543a01f1a0c28860ccb (patch) | |
tree | cba732e78866f18b33c14578b1adfbfdc7556b4d | |
parent | 7d5e27b473a1ba013a9eb63f57e1e2e445200f6f (diff) | |
download | ffmpeg-63a5e83de8189372fcf8c543a01f1a0c28860ccb.tar.gz |
avformat/icoenc: Use avcodec_get_name() instead of codec descriptor
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavformat/icoenc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/icoenc.c b/libavformat/icoenc.c index 21966f3921..d684f67707 100644 --- a/libavformat/icoenc.c +++ b/libavformat/icoenc.c @@ -27,7 +27,6 @@ #include "libavutil/intreadwrite.h" #include "libavutil/pixdesc.h" -#include "libavcodec/codec_desc.h" #include "libavcodec/codec_id.h" #include "avformat.h" @@ -66,8 +65,7 @@ static int ico_check_attributes(AVFormatContext *s, const AVCodecParameters *p) return AVERROR(EINVAL); } } else { - const AVCodecDescriptor *codesc = avcodec_descriptor_get(p->codec_id); - av_log(s, AV_LOG_ERROR, "Unsupported codec %s\n", codesc ? codesc->name : ""); + av_log(s, AV_LOG_ERROR, "Unsupported codec %s\n", avcodec_get_name(p->codec_id)); return AVERROR(EINVAL); } |