summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-10-07 21:00:11 +0200
committerCarl Hetherington <cth@carlh.net>2021-10-09 20:01:00 +0200
commit2846a509d6403d5fe1e7c2c471c85a913fabc716 (patch)
tree78254a9841c7ca47bc3f1b37adad597c70cf23c4 /src/lib
parent5fa04f74b6ac83fe985f9c64ce069151d560dbae (diff)
More logging in the DCPExaminer.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_examiner.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/dcp_examiner.cc b/src/lib/dcp_examiner.cc
index e290a966a..219c3ee6e 100644
--- a/src/lib/dcp_examiner.cc
+++ b/src/lib/dcp_examiner.cc
@@ -21,6 +21,7 @@
#include "dcp_examiner.h"
#include "dcp_content.h"
+#include "dcpomatic_log.h"
#include "exceptions.h"
#include "image.h"
#include "config.h"
@@ -110,6 +111,8 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
_name = cpl->content_title_text ();
_content_kind = cpl->content_kind ();
+ LOG_GENERAL ("Selected CPL %1", _cpl);
+
auto try_to_parse_language = [](optional<string> lang) -> boost::optional<dcp::LanguageTag> {
try {
if (lang) {
@@ -119,15 +122,21 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
return boost::none;
};
+ LOG_GENERAL ("Looking at %1 reels", cpl->reels().size());
+
for (auto i: cpl->reels()) {
+ LOG_GENERAL ("Reel %1", i->id());
if (i->main_picture ()) {
if (!i->main_picture()->asset_ref().resolved()) {
/* We are missing this asset so we can't continue; examination will be repeated later */
_needs_assets = true;
+ LOG_GENERAL ("Main picture %1 of reel %2 is missing", i->main_picture()->id(), i->id());
return;
}
+ LOG_GENERAL ("Main picture %1 of reel %2 found", i->main_picture()->id(), i->id());
+
auto const frac = i->main_picture()->edit_rate ();
float const fr = float(frac.numerator) / frac.denominator;
if (!_video_frame_rate) {
@@ -151,9 +160,12 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
if (!i->main_sound()->asset_ref().resolved()) {
/* We are missing this asset so we can't continue; examination will be repeated later */
_needs_assets = true;
+ LOG_GENERAL ("Main sound %1 of reel %2 is missing", i->main_sound()->id(), i->id());
return;
}
+ LOG_GENERAL ("Main sound %1 of reel %2 found", i->main_sound()->id(), i->id());
+
_has_audio = true;
auto asset = i->main_sound()->asset();
@@ -177,9 +189,12 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
if (!i->main_subtitle()->asset_ref().resolved()) {
/* We are missing this asset so we can't continue; examination will be repeated later */
_needs_assets = true;
+ LOG_GENERAL ("Main subtitle %1 of reel %2 is missing", i->main_subtitle()->id(), i->id());
return;
}
+ LOG_GENERAL ("Main subtitle %1 of reel %2 found", i->main_subtitle()->id(), i->id());
+
_text_count[static_cast<int>(TextType::OPEN_SUBTITLE)] = 1;
_open_subtitle_language = try_to_parse_language (i->main_subtitle()->language());
}
@@ -188,9 +203,12 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
if (!j->asset_ref().resolved()) {
/* We are missing this asset so we can't continue; examination will be repeated later */
_needs_assets = true;
+ LOG_GENERAL ("Closed caption %1 of reel %2 is missing", j->id(), i->id());
return;
}
+ LOG_GENERAL ("Closed caption %1 of reel %2 found", j->id(), i->id());
+
_text_count[static_cast<int>(TextType::CLOSED_CAPTION)]++;
_dcp_text_tracks.push_back (DCPTextTrack(j->annotation_text(), try_to_parse_language(j->language())));
}
@@ -225,6 +243,8 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
_encrypted = cpl->any_encrypted ();
_kdm_valid = true;
+ LOG_GENERAL_NC ("Check that everything encrypted has a key");
+
/* Check first that anything encrypted has a key. We must do this, as if we try to
* read encrypted data with asdcplib without even offering a key it will just return
* the encrypted data. Secondly, check that we can read the first thing from each
@@ -232,6 +252,7 @@ DCPExaminer::DCPExaminer (shared_ptr<const DCPContent> content, bool tolerant)
*/
try {
for (auto i: cpl->reels()) {
+ LOG_GENERAL ("Reel %1", i->id());
auto pic = i->main_picture()->asset();
if (pic->encrypted() && !pic->key()) {
_kdm_valid = false;