changes to waveform clipping display

* clip level is now -0.9dbFS
   * display of clipping is optional (see Theme Manager window)
   * clipping is based on disk data, unscaled by region gain
This commit is contained in:
Paul Davis 2013-06-28 20:21:30 -04:00
parent aa480b8338
commit af3056769c
8 changed files with 105 additions and 65 deletions

View file

@ -106,6 +106,7 @@ public:
static void set_global_gradient_depth (double);
static void set_global_logscaled (bool);
static void set_global_shape (Shape);
static void set_global_show_waveform_clipping (bool);
static double global_gradient_depth() { return _global_gradient_depth; }
static bool global_logscaled() { return _global_logscaled; }
@ -161,6 +162,7 @@ private:
static double _global_gradient_depth;
static bool _global_logscaled;
static Shape _global_shape;
static bool _global_show_waveform_clipping;
static PBD::Signal0<void> VisualPropertiesChanged;