[FFmpeg-cvslog] lavf/avienc: fix/extend error message, in case of too large number of skipped frames

Stefano Sabatini git at videolan.org
Wed Oct 31 14:48:10 CET 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Wed Oct 31 14:17:34 2012 +0100| [be0b37c649d19ee21c024b11f53bcc39674fca3b] | committer: Stefano Sabatini

lavf/avienc: fix/extend error message, in case of too large number of skipped frames

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

 libavformat/avienc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/avienc.c b/libavformat/avienc.c
index dd33610..ce5f85d 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);
         }
 



More information about the ffmpeg-cvslog mailing list