Ardour  9.2-79-gba93f2fe52
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 <ytkmm/progressbar.h>
23 #include <ytkmm/spinbutton.h>
24 
25 #include <pbd/mutex.h>
26 #include <pbd/xml++.h>
27 
29 #include "ardour/types.h"
30 #include "ardour_dialog.h"
31 #include "progress_reporter.h"
32 
33 namespace ARDOUR {
34  class Session;
35 }
36 
37 class AudioClock;
38 class RegionView;
39 
42 {
43 public:
44  StripSilenceDialog (ARDOUR::Session*, std::list<RegionView*> const &);
46 
47  double threshold () const {
48  return _threshold.get_value ();
49  }
50 
51  void drop_rects ();
52 
54 
57 
58  void on_response (int response_id) {
59  Gtk::Dialog::on_response (response_id);
60  }
61 
62  XMLNode& get_state () const;
63  void set_state (const XMLNode &);
64 
65 private:
66  void create_waves ();
70  void update ();
74  void update_progress_gui (float);
75  void restart_thread ();
76  void finished(int);
77 
82 
85 
86  struct ViewInterval {
89 
90  ViewInterval (RegionView* rv) : view (rv) {}
91  };
92 
93  std::list<ViewInterval> views;
94 
96 
97  pthread_t _thread;
98  static void * _detection_thread_work (void *);
106 
107  sigc::connection progress_idle_connection;
111 
115 };
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.
PBD::Cond _run_cond
condition to wake the thread
PBD::Signal< void()> Completed
emitted when a silence detection has completed
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.
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()
PBD::ScopedConnection _completed_connection
void update_progress_gui(float)
PBD::Mutex _lock
lock held while the thread is doing work
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