[FFmpeg-cvslog] libavformat/utils: print ts in the "invalid dts/pts combination" case.

Michael Niedermayer git at videolan.org
Wed Sep 21 21:08:36 CEST 2011


ffmpeg | branch: release/0.8 | Michael Niedermayer <michaelni at gmx.at> | Tue Sep 13 04:27:41 2011 +0200| [56634b2328ebe7e539278e7f4a6e8fa5973a25ad] | committer: Michael Niedermayer

libavformat/utils: print ts in the "invalid dts/pts combination" case.

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 38670356f990da1efb906232768836d83356855b)

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

 libavformat/utils.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index a582ddc..d24c7a0 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -995,7 +995,7 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
     // we take the conservative approach and discard both
     // Note, if this is misbehaving for a H.264 file then possibly presentation_delayed is not set correctly.
     if(delay==1 && pkt->dts == pkt->pts && pkt->dts != AV_NOPTS_VALUE && presentation_delayed){
-        av_log(s, AV_LOG_DEBUG, "invalid dts/pts combination\n");
+        av_log(s, AV_LOG_DEBUG, "invalid dts/pts combination %Ld\n", pkt->dts);
         pkt->dts= pkt->pts= AV_NOPTS_VALUE;
     }
 



More information about the ffmpeg-cvslog mailing list