summaryrefslogtreecommitdiff
path: root/tools/common.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-03-25 09:31:04 +0100
committerCarl Hetherington <cth@carlh.net>2025-03-25 09:31:04 +0100
commit7abe0aaa61fb98faf97c595ffaae86f3794217c6 (patch)
tree0ddca26ea47b1acd5c8f5a53dca8fe4d16a93ee7 /tools/common.h
parent8edb46702b372b6e672d0ac8f810e151e1aa5707 (diff)
Adjust filter_notes to also handle the ignore_bv21_smpte flag.
This fixes a problem where the Bv21 SMPTE warning appears in HTML reports.
Diffstat (limited to 'tools/common.h')
-rw-r--r--tools/common.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/common.h b/tools/common.h
index dc8d115c..153b1fed 100644
--- a/tools/common.h
+++ b/tools/common.h
@@ -21,6 +21,10 @@
namespace dcp {
-extern void filter_notes (std::vector<dcp::VerificationNote>& notes, bool ignore_missing_assets);
+extern std::vector<dcp::VerificationNote> filter_notes(
+ std::vector<dcp::VerificationNote> const& notes,
+ bool ignore_missing_assets,
+ bool ignore_bv21_smpte
+ );
}