changeset 4551:68138429410b libavformat

Be less noisy with invalid pts/dts.
author michael
date Sat, 21 Feb 2009 17:29:25 +0000
parents a36f9f2eefcb
children da2be12b7b4b
files utils.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/utils.c	Sat Feb 21 15:32:56 2009 +0000
+++ b/utils.c	Sat Feb 21 17:29:25 2009 +0000
@@ -810,7 +810,7 @@
     // 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_ERROR, "invalid dts/pts combination\n");
+        av_log(s, AV_LOG_WARNING, "invalid dts/pts combination\n");
         pkt->dts= pkt->pts= AV_NOPTS_VALUE;
     }