Ardour  8.12
strip_silence_dialog.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
3  * Copyright (C) 2009-2011 David Robillard <d@drobilla.net>
4  * Copyright (C) 2009-2017 Paul Davis <paul@linuxaudiosystems.com>
5  * Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #include <gtkmm/spinbutton.h>
23 #include <glibmm/threads.h>
24 
25 #include <pbd/xml++.h>
26 
27 #include "ardour/types.h"
28 #include "ardour_dialog.h"
29 #include "progress_reporter.h"
30 
31 namespace ARDOUR {
32  class Session;
33 }
34 
35 class AudioClock;
36 class RegionView;
37 
40 {
41 public:
42  StripSilenceDialog (ARDOUR::Session*, std::list<RegionView*> const &);
44 
45  double threshold () const {
46  return _threshold.get_value ();
47  }
48 
49  void drop_rects ();
50 
52 
55 
56  void on_response (int response_id) {
57  Gtk::Dialog::on_response (response_id);
58  }
59 
60  XMLNode& get_state () const;
61  void set_state (const XMLNode &);
62 
63 private:
64  void create_waves ();
68  void update ();
72  void update_progress_gui (float);
73  void restart_thread ();
74  void finished(int);
75 
80 
83 
84  struct ViewInterval {
87 
88  ViewInterval (RegionView* rv) : view (rv) {}
89  };
90 
91  std::list<ViewInterval> views;
92 
94 
95  pthread_t _thread;
96  static void * _detection_thread_work (void *);
98  Glib::Threads::Mutex _lock;
99  Glib::Threads::Cond _run_cond;
101  PBD::Signal0<void> Completed;
104 
105  sigc::connection progress_idle_connection;
109 
113 };
virtual void on_response(int response_id)
This is a default handler for the signal signal_response().
double get_value() const
Dialog box to set options for the ‘strip silence’ filter.
void set_state(const XMLNode &)
void canvas_allocation(Gtk::Allocation &)
bool _thread_should_finish
true if the thread should terminate
std::list< ViewInterval > views
ARDOUR::samplecnt_t minimum_length() const
ARDOUR::InterThreadInfo _interthread_info
AudioClock * _minimum_length
void * detection_thread_work()
void silences(ARDOUR::AudioIntervalMap &)
Gtk::Button * apply_button
ARDOUR::samplecnt_t _fade_length_value
StripSilenceDialog(ARDOUR::Session *, std::list< RegionView * > const &)
sigc::connection progress_idle_connection
void on_response(int response_id)
This is a default handler for the signal signal_response().
bool idle_update_progress()
GUI-thread progress updates of background silence computation.
PBD::Signal0< void > Completed
emitted when a silence detection has completed
Glib::Threads::Mutex _lock
lock held while the thread is doing work
Gtk::SpinButton _threshold
pthread_t _thread
thread to compute silence in the background
static void * _detection_thread_work(void *)
Gtk::ProgressBar _progress_bar
void update_threshold_line()
Glib::Threads::Cond _run_cond
condition to wake the thread
PBD::ScopedConnection _completed_connection
void update_progress_gui(float)
double threshold() const
Gtk::Button * cancel_button
XMLNode & get_state() const
void resize_silence_rects()
void update_stats(ARDOUR::AudioIntervalResult const &)
ARDOUR::samplecnt_t fade_length() const
void update_silence_rects()
ARDOUR::samplecnt_t _minimum_length_value
Definition: xml++.h:114
std::list< std::pair< sampleoffset_t, sampleoffset_t > > AudioIntervalResult
Temporal::samplecnt_t samplecnt_t
std::map< std::shared_ptr< ARDOUR::Region >, AudioIntervalResult > AudioIntervalMap
ARDOUR::AudioIntervalResult intervals