summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-06 23:21:57 +0200
committercah <cth@carlh.net>2025-07-10 22:49:00 +0200
commit5599e8ecd975b7fba5e551b1353c0b358fdf35b1 (patch)
tree30960db97ee4460962a54a1e754edc3bc22b14cd
parent370d9dcda402a59ee27dfd06c12ff96ddd3c881e (diff)
Rename audio_output_names() -> audio_output_channel_names().
-rw-r--r--src/lib/film.cc2
-rw-r--r--src/lib/film.h2
-rw-r--r--src/wx/audio_panel.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 4e16e47f2..58699743b 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -1882,7 +1882,7 @@ Film::should_be_enough_disk_space(double& required, double& available) const
* this is either the DCP or a AudioProcessor.
*/
vector<NamedChannel>
-Film::audio_output_names() const
+Film::audio_output_channel_names() const
{
if (audio_processor()) {
return audio_processor()->input_names();
diff --git a/src/lib/film.h b/src/lib/film.h
index 273e9776b..b14f182ce 100644
--- a/src/lib/film.h
+++ b/src/lib/film.h
@@ -163,7 +163,7 @@ public:
return _state_version;
}
- std::vector<NamedChannel> audio_output_names() const;
+ std::vector<NamedChannel> audio_output_channel_names() const;
std::string audio_output_name() const;
void repeat_content(ContentList, int);
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc
index f91d21da0..e04e65691 100644
--- a/src/wx/audio_panel.cc
+++ b/src/wx/audio_panel.cc
@@ -194,7 +194,7 @@ AudioPanel::film_changed (FilmProperty property)
switch (property) {
case FilmProperty::AUDIO_CHANNELS:
case FilmProperty::AUDIO_PROCESSOR:
- _mapping->set_output_channels (_parent->film()->audio_output_names ());
+ _mapping->set_output_channels(_parent->film()->audio_output_channel_names());
_mapping->set_top_label(std_to_wx(_parent->film()->audio_output_name()));
setup_peak ();
setup_sensitivity();