Skip to content
Snippets Groups Projects
Commit 79c11388 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

lavf/apngenc: Do not print a warning in the normal use-case.

parent b926f02e
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ static void flush_packet(AVFormatContext *format_context, AVPacket *packet) ...@@ -114,7 +114,7 @@ static void flush_packet(AVFormatContext *format_context, AVPacket *packet)
uint8_t *existing_acTL_chunk; uint8_t *existing_acTL_chunk;
uint8_t *existing_fcTL_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 // 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); existing_acTL_chunk = apng_find_chunk(MKBETAG('a', 'c', 'T', 'L'), codec_context->extradata, codec_context->extradata_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment