From a8c4fdd6166ab7f644cab8d5a83717d81abac362 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 21 Sep 2016 10:58:02 -0400 Subject: [PATCH] more debug --- src/zm_videostore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_videostore.cpp b/src/zm_videostore.cpp index 7e14cc773..e90ce5f34 100644 --- a/src/zm_videostore.cpp +++ b/src/zm_videostore.cpp @@ -365,7 +365,7 @@ if ( 1 ) { Debug(3, "opkt.dts = %d from input_video_stream->cur_dts(%d) - startDts(%d), input time based(%d/%d) video_stream->time-base(%d/%d)", opkt.dts, input_video_stream->cur_dts, startDts, input_video_stream->time_base.num, - input_video_stream->time_base.den + input_video_stream->time_base.den, video_stream->time_base.num, video_stream->time_base.den ); @@ -374,7 +374,7 @@ if ( 1 ) { opkt.dts = av_rescale_q(ipkt->dts - startDts, input_video_stream->time_base, video_stream->time_base); Debug(3, "opkt.dts = %d from ipkt->dts(%d) - startDts(%d), input time base (%d/%d) video_stream->time-base(%d/%d)", opkt.dts, ipkt->dts, startDts, input_video_stream->time_base.num, - input_video_stream->time_base.den + input_video_stream->time_base.den, video_stream->time_base.num, video_stream->time_base.den );