[FFmpeg-cvslog] lavf/apngenc: Do not print a warning in the normal use-case.
Carl Eugen Hoyos
git at videolan.org
Wed Apr 8 19:59:08 CEST 2015
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Apr 8 19:58:32 2015 +0200| [79c11388e1f5d1af4dadf89f8a80d081f3a9ba4b] | committer: Carl Eugen Hoyos
lavf/apngenc: Do not print a warning in the normal use-case.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=79c11388e1f5d1af4dadf89f8a80d081f3a9ba4b
---
libavformat/apngenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/apngenc.c b/libavformat/apngenc.c
index 8dbe9e4..4b31309 100644
--- a/libavformat/apngenc.c
+++ b/libavformat/apngenc.c
@@ -114,7 +114,7 @@ static void flush_packet(AVFormatContext *format_context, AVPacket *packet)
uint8_t *existing_acTL_chunk;
uint8_t *existing_fcTL_chunk;
- av_log(format_context, AV_LOG_WARNING, "Only a single frame so saving as a normal PNG.\n");
+ av_log(format_context, AV_LOG_INFO, "Only a single frame so saving as a normal PNG.\n");
// Write normal PNG headers without acTL chunk
existing_acTL_chunk = apng_find_chunk(MKBETAG('a', 'c', 'T', 'L'), codec_context->extradata, codec_context->extradata_size);
More information about the ffmpeg-cvslog
mailing list