summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-08-11 22:56:59 +0100
committerCarl Hetherington <cth@carlh.net>2019-08-11 22:56:59 +0100
commit910ea473219f2e7c672ad437d458316deca67025 (patch)
tree1af0895962ad3e122858c42d9b7df54e2d0a9bdd /src/wx/kdm_output_panel.h
parentbd83f1b0e1d8e7aae0af51376dbbb88d5e3f69d0 (diff)
Allow specification of audio forensic marking (in KDMs) for some channels only. Default to enabling forensic marking for video and audio (up to and including channel 12). Fixes #1498.
Diffstat (limited to 'src/wx/kdm_output_panel.h')
-rw-r--r--src/wx/kdm_output_panel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h
index c52fa7a15..7b9315071 100644
--- a/src/wx/kdm_output_panel.h
+++ b/src/wx/kdm_output_panel.h
@@ -47,6 +47,9 @@ public:
bool forensic_mark_audio () const {
return _forensic_mark_audio;
}
+ boost::optional<int> forensic_mark_audio_up_to () const {
+ return _forensic_mark_audio_up_to;
+ }
std::pair<boost::shared_ptr<Job>, int> make (
std::list<boost::shared_ptr<ScreenKDM> > screen_kdms,
@@ -74,4 +77,5 @@ private:
wxCheckBox* _email;
bool _forensic_mark_video;
bool _forensic_mark_audio;
+ boost::optional<int> _forensic_mark_audio_up_to;
};