diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-10-31 14:17:34 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-10-31 14:46:40 +0100 |
commit | be0b37c649d19ee21c024b11f53bcc39674fca3b (patch) | |
tree | fb0127348b68ec67977286475c2a2495ae3ed97a | |
parent | f35d5f966f21704ad8f9da74ea2090af563fd656 (diff) | |
download | ffmpeg-be0b37c649d19ee21c024b11f53bcc39674fca3b.tar.gz |
lavf/avienc: fix/extend error message, in case of too large number of skipped frames
-rw-r--r-- | libavformat/avienc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c index dd33610cff..ce5f85d581 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -513,7 +513,7 @@ static int avi_write_packet(AVFormatContext *s, AVPacket *pkt) AVPacket empty_packet; if(pkt->dts - avist->packet_count > 60000){ - av_log(s, AV_LOG_ERROR, "Too large number of skiped frames %"PRId64"\n", pkt->dts - avist->packet_count); + av_log(s, AV_LOG_ERROR, "Too large number of skipped frames %"PRId64" > 60000\n", pkt->dts - avist->packet_count); return AVERROR(EINVAL); } |