Commit f759f66e authored by Anton Khirnov's avatar Anton Khirnov

avconv: explicitly report when the muxing overhead is unknown

parent 781d97fd
...@@ -858,17 +858,21 @@ static void print_report(int is_last_report, int64_t timer_start) ...@@ -858,17 +858,21 @@ static void print_report(int is_last_report, int64_t timer_start)
if (is_last_report) { if (is_last_report) {
int64_t raw = audio_size + video_size + extra_size; int64_t raw = audio_size + video_size + extra_size;
float percent = 0.0; float percent = -1.0;
if (raw) if (raw)
percent = 100.0 * (total_size - raw) / raw; percent = 100.0 * (total_size - raw) / raw;
av_log(NULL, AV_LOG_INFO, "\n"); av_log(NULL, AV_LOG_INFO, "\n");
av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead %f%%\n", av_log(NULL, AV_LOG_INFO, "video:%1.0fkB audio:%1.0fkB global headers:%1.0fkB muxing overhead: ",
video_size / 1024.0, video_size / 1024.0,
audio_size / 1024.0, audio_size / 1024.0,
extra_size / 1024.0, extra_size / 1024.0,
percent); if (percent >= 0.0)
av_log(NULL, AV_LOG_INFO, "%f%%", percent);
else
av_log(NULL, AV_LOG_INFO, "unknown");
av_log(NULL, AV_LOG_INFO, "\n");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment