# HG changeset patch # User michael # Date 1235237365 0 # Node ID 68138429410bfea4f6ea0a215bbaa74f73fa735e # Parent a36f9f2eefcb9f7245a50eb94b39b66332f6fad9 Be less noisy with invalid pts/dts. diff -r a36f9f2eefcb -r 68138429410b utils.c --- 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; }