[FFmpeg-cvslog] avformat/icoenc: Remove deprecated use of codec_name

Michael Niedermayer git at videolan.org
Thu Aug 28 14:43:06 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Aug 27 22:37:38 2014 +0200| [d6bd29492ca2f0571580d2601386cc2e1dd37250] | committer: Michael Niedermayer

avformat/icoenc: Remove deprecated use of codec_name

Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d6bd29492ca2f0571580d2601386cc2e1dd37250
---

 libavformat/icoenc.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/icoenc.c b/libavformat/icoenc.c
index dcf9065..53d4420 100644
--- a/libavformat/icoenc.c
+++ b/libavformat/icoenc.c
@@ -61,7 +61,8 @@ static int ico_check_attributes(AVFormatContext *s, const AVCodecContext *c)
             return AVERROR(EINVAL);
         }
     } else {
-        av_log(s, AV_LOG_ERROR, "Unsupported codec %s\n", c->codec_name);
+        const AVCodecDescriptor *codesc = avcodec_descriptor_get(c->codec_id);
+        av_log(s, AV_LOG_ERROR, "Unsupported codec %s\n", codesc ? codesc->name : "");
         return AVERROR(EINVAL);
     }
 



More information about the ffmpeg-cvslog mailing list