Demote warnings about fixing non-monotonic dts to debug

This commit is contained in:
Isaac Connor 2019-08-02 08:03:02 -04:00
parent 479e7c290c
commit 6a9464044b
1 changed files with 1 additions and 1 deletions

View File

@ -1010,7 +1010,7 @@ int VideoStore::writeVideoFramePacket(AVPacket *ipkt) {
# if 1 # if 1
if ( opkt.dts < video_out_stream->cur_dts ) { if ( opkt.dts < video_out_stream->cur_dts ) {
Warning("Fixing non-monotonic dts/pts dts %" PRId64 " pts %" PRId64 " stream %" PRId64, Debug(1, "Fixing non-monotonic dts/pts dts %" PRId64 " pts %" PRId64 " stream %" PRId64,
opkt.dts, opkt.pts, video_out_stream->cur_dts); opkt.dts, opkt.pts, video_out_stream->cur_dts);
opkt.dts = video_out_stream->cur_dts; opkt.dts = video_out_stream->cur_dts;
if ( opkt.dts > opkt.pts ) { if ( opkt.dts > opkt.pts ) {