diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-06 01:11:57 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-06 01:11:57 +0000 |
commit | 6bbdba08c277fd63cb9349876e7377a2b53f5b89 (patch) | |
tree | 0f723455398f263a0d67a1ea152479d5aaa4de44 /libavformat/utils.c | |
parent | 7820147e6fe43816bafe7ee1d0141a77eb10f53c (diff) | |
download | ffmpeg-6bbdba08c277fd63cb9349876e7377a2b53f5b89.tar.gz |
Revert previous commit, as it was not meant to be pushed.
Originally committed as revision 26239 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 3b1b34e692..fb93e3b57c 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2917,14 +2917,12 @@ 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, - "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; } |