Put images on the fade in/out menus. Fixes #3411.
[ardour.git] / libs / ardour / strip_silence.cc
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "pbd/property_list.h"
21
22 #include "ardour/strip_silence.h"
23 #include "ardour/audioregion.h"
24 #include "ardour/region_factory.h"
25 #include "ardour/session.h"
26 #include "ardour/dB.h"
27
28 using namespace ARDOUR;
29
30 /** Construct a StripSilence filter.
31  *  @param s Session.
32  *  @param threshold Threshold below which audio is considered silence, in dBFS.
33  *  @param minimum_length Minimum length of silence period to recognise, in samples.
34  *  @param fade_length Length of fade in/out to apply to trimmed regions, in samples.
35  */
36
37 StripSilence::StripSilence (Session & s, double threshold, nframes_t minimum_length, nframes_t fade_length)
38         : Filter (s), _threshold (threshold), _minimum_length (minimum_length), _fade_length (fade_length)
39 {
40
41 }
42
43 int
44 StripSilence::run (boost::shared_ptr<Region> r)
45 {
46         results.clear ();
47
48         /* we only operate on AudioRegions, for now, though this could be adapted to MIDI
49            as well I guess 
50         */
51         boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion> (r);
52         InterThreadInfo itt;
53         
54         if (!region) {
55                 results.push_back (r);
56                 return -1;
57         }
58
59         /* find periods of silence in the region */
60         std::list<std::pair<frameoffset_t, framecnt_t> > const silence =
61                 region->find_silence (dB_to_coefficient (_threshold), _minimum_length, itt);
62
63         if (silence.size () == 1 && silence.front().first == 0 && silence.front().second == region->length() - 1) {
64                 /* the region is all silence, so just return with nothing */
65                 return 0;
66         }
67
68         if (silence.empty()) {
69                 /* no silence in this region */
70                 results.push_back (region);
71                 return 0;
72         }
73
74         std::list<std::pair<framepos_t, framecnt_t > >::const_iterator s = silence.begin ();
75         PBD::PropertyList plist;
76         framepos_t start = 0;
77         framepos_t end;
78         bool in_silence;
79         boost::shared_ptr<AudioRegion> copy;
80
81         if (s->first == 0) {
82                 /* initial segment, starting at zero, is silent */
83                 end = s->second;
84                 in_silence = true;
85         } else {
86                 /* initial segment, starting at zero, is audible */
87                 end = s->first;
88                 in_silence = false;
89         }
90
91         while (s != silence.end()) {
92
93                 framecnt_t interval_duration;
94
95                 interval_duration = end - start;
96
97
98                 if (!in_silence && interval_duration > 0) {
99
100                         plist.clear ();
101                         plist.add (Properties::length, interval_duration);
102                         plist.add (Properties::position, region->position() + start);
103
104                         copy = boost::dynamic_pointer_cast<AudioRegion> (RegionFactory::create 
105                                                                          (region, start, plist));
106
107                         copy->set_name (RegionFactory::new_region_name (region->name ()));
108
109                         std::cerr << "New silent delineated region called " << copy->name()
110                                   << " @ " << copy->start() << " length = " << copy->length() << " pos = " << 
111                                 copy->position() << std::endl;
112
113                         copy->set_fade_in_active (true);
114                         copy->set_fade_in (FadeLinear, _fade_length);
115                         results.push_back (copy);
116                 }
117
118                 start = end;
119                 ++s;
120                 end = s->first;
121                 in_silence = !in_silence;
122         }
123
124         return 0;
125 }