From 699565828de222b70c27d2ca307fcad73aec7b36 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Tue, 18 Sep 2018 07:58:52 +0000 Subject: [PATCH] videoio(test): dump file size information --- modules/videoio/test/test_ffmpeg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/videoio/test/test_ffmpeg.cpp b/modules/videoio/test/test_ffmpeg.cpp index e9e5e9aca1..0bbab69fb8 100644 --- a/modules/videoio/test/test_ffmpeg.cpp +++ b/modules/videoio/test/test_ffmpeg.cpp @@ -164,6 +164,8 @@ public: } else { + printf("Case: '%s' (frame size %dx%d fps=%g). FileSize=%lld bytes\n", + s.c_str(), frame_s.width, frame_s.height, fps, (long long int)sz); if (sz < 8192) { fprintf(stderr, "ERROR: File name: %s is very small (data write problems?)\n", filename.c_str());