From f5405a4131688d7930f753f3a4d45df323708451 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 21 Sep 2016 11:57:42 -0400 Subject: [PATCH] clearer debug output --- src/zm_ffmpeg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zm_ffmpeg.cpp b/src/zm_ffmpeg.cpp index e73badba8..ec3ebeb91 100644 --- a/src/zm_ffmpeg.cpp +++ b/src/zm_ffmpeg.cpp @@ -463,9 +463,9 @@ void zm_dump_stream_format(AVFormatContext *ic, int i, int index, int is_output) if (fps) zm_log_fps(av_q2d(st->avg_frame_rate), tbn || tbc ? "fps, " : "fps"); if (tbn) - zm_log_fps(1 / av_q2d(st->time_base), tbc ? "tbn, " : "tbn"); + zm_log_fps(1 / av_q2d(st->time_base), tbc ? "stream tb numerator , " : "stream tb numerator"); if (tbc) - zm_log_fps(1 / av_q2d(st->codec->time_base), "tbc"); + zm_log_fps(1 / av_q2d(st->codec->time_base), "codec time base:"); } if (st->disposition & AV_DISPOSITION_DEFAULT)