summaryrefslogtreecommitdiff
path: root/src/wx/audio_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-08 23:48:48 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-08 23:48:48 +0000
commitbd68f5a27795cb9151633bac810c53bae4ec4bf4 (patch)
tree45863401b714e0e5635ffbf045460c9d8ebb9e9f /src/wx/audio_dialog.h
parent4df42c81390ed61aecbcc5bf0ad380937c26eaef (diff)
Re-analyse audio when DCP channel count changes (#1189).
Diffstat (limited to 'src/wx/audio_dialog.h')
-rw-r--r--src/wx/audio_dialog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h
index 2c077c9d1..38f474afd 100644
--- a/src/wx/audio_dialog.h
+++ b/src/wx/audio_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -38,6 +38,7 @@ public:
void set_cursor (boost::optional<DCPTime> time, boost::optional<float> db);
private:
+ void film_change (ChangeType, int);
void content_change (ChangeType, int);
void channel_clicked (wxCommandEvent &);
void type_clicked (wxCommandEvent &);
@@ -61,5 +62,6 @@ private:
wxCheckBox* _type_checkbox[AudioPoint::COUNT];
wxSlider* _smoothing;
boost::signals2::scoped_connection _film_connection;
+ boost::signals2::scoped_connection _film_content_connection;
boost::signals2::scoped_connection _analysis_finished_connection;
};