Hackz.
authorCarl Hetherington <cth@carlh.net>
Wed, 5 Aug 2020 22:41:33 +0000 (00:41 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 6 Aug 2020 07:38:43 +0000 (09:38 +0200)
src/tools/dcpomatic_disk_writer.cc

index fd6b6db75744e1a510d6f17efdb07e62703e3fe9..0348557c3c63e58c7b516574c18c2d5112133fc2 100644 (file)
@@ -132,6 +132,7 @@ write (boost::filesystem::path from, boost::filesystem::path to, uint64_t& total
        int progress_count = 0;
        uint64_t remaining = file_size (from);
        while (remaining > 0) {
+               std::cout << "write " << from << " " << remaining << " / " << total << "\n";
                uint64_t const this_time = min(remaining, block_size);
                size_t read = fread (buffer, 1, this_time, in);
                if (read != this_time) {