[SCM] libav/experimental: Issue more explicit error messages in compute_pkt_fields2().

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:21:26 UTC 2013


The following commit has been merged in the experimental branch:
commit 7820147e6fe43816bafe7ee1d0141a77eb10f53c
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Thu Jan 6 01:01:21 2011 +0000

    Issue more explicit error messages in compute_pkt_fields2().
    
    Originally committed as revision 26238 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/utils.c b/libavformat/utils.c
index fb93e3b..3b1b34e 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2917,12 +2917,14 @@ static int compute_pkt_fields2(AVFormatContext *s, AVStream *st, AVPacket *pkt){
 
     if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && st->cur_dts >= pkt->dts){
         av_log(s, AV_LOG_ERROR,
-               "st:%d error, non monotone timestamps %"PRId64" >= %"PRId64"\n",
+               "Non monotone timestamps in stream number %d: st->cur_dts:%"PRId64" >= pkt->dts:%"PRId64"\n",
                st->index, st->cur_dts, pkt->dts);
         return -1;
     }
     if(pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts){
-        av_log(s, AV_LOG_ERROR, "st:%d error, pts < dts\n", st->index);
+        av_log(s, AV_LOG_ERROR,
+               "pts < dts in stream number %d\n: pkt->pts:%"PRId64" < pkt->dts:%"PRId64"\n",
+               st->index, pkt->pts, pkt->dts);
         return -1;
     }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list