summaryrefslogtreecommitdiff
path: root/src/wx/audio_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-18 17:07:07 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-18 20:52:20 +0000
commit419afb743ad2aaf1ea301356ac09f9a26ee15567 (patch)
treea90a3776b0919871750c173c2bb753321ddf7282 /src/wx/audio_dialog.h
parente07926b8b0d3d93c2b670aea4b49230170a3532b (diff)
Basic (untested) ebur128 (#368).
Diffstat (limited to 'src/wx/audio_dialog.h')
-rw-r--r--src/wx/audio_dialog.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h
index 588f71159..0f791dc16 100644
--- a/src/wx/audio_dialog.h
+++ b/src/wx/audio_dialog.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -41,14 +41,17 @@ private:
void smoothing_changed ();
void try_to_load_analysis ();
void analysis_finished ();
- void setup_peak_time ();
+ void setup_statistics ();
boost::shared_ptr<AudioAnalysis> _analysis;
boost::weak_ptr<Film> _film;
int _channels;
boost::shared_ptr<const Playlist> _playlist;
AudioPlot* _plot;
- wxStaticText* _peak_time;
+ wxStaticText* _sample_peak;
+ wxStaticText* _true_peak;
+ wxStaticText* _integrated_loudness;
+ wxStaticText* _loudness_range;
wxCheckBox* _channel_checkbox[MAX_DCP_AUDIO_CHANNELS];
wxCheckBox* _type_checkbox[AudioPoint::COUNT];
wxSlider* _smoothing;