[FFmpeg-cvslog] r26239 - trunk/libavformat/utils.c

stefano subversion
Thu Jan 6 02:11:58 CET 2011


Author: stefano
Date: Thu Jan  6 02:11:57 2011
New Revision: 26239

Log:
Revert previous commit, as it was not meant to be pushed.

Modified:
   trunk/libavformat/utils.c

Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c	Thu Jan  6 02:01:21 2011	(r26238)
+++ trunk/libavformat/utils.c	Thu Jan  6 02:11:57 2011	(r26239)
@@ -2917,14 +2917,12 @@ static int compute_pkt_fields2(AVFormatC
 
     if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && st->cur_dts >= pkt->dts){
         av_log(s, AV_LOG_ERROR,
-               "Non monotone timestamps in stream number %d: st->cur_dts:%"PRId64" >= pkt->dts:%"PRId64"\n",
+               "st:%d error, non monotone timestamps %"PRId64" >= %"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,
-               "pts < dts in stream number %d\n: pkt->pts:%"PRId64" < pkt->dts:%"PRId64"\n",
-               st->index, pkt->pts, pkt->dts);
+        av_log(s, AV_LOG_ERROR, "st:%d error, pts < dts\n", st->index);
         return -1;
     }
 



More information about the ffmpeg-cvslog mailing list