e2177837606ba1cbdc013403dd8951183b54b344
[ardour.git] / libs / ardour / audioregion.cc
1 /*
2     Copyright (C) 2000-2006 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 <cmath>
21 #include <climits>
22 #include <cfloat>
23 #include <algorithm>
24
25 #include <set>
26
27 #include <boost/scoped_array.hpp>
28
29 #include <glibmm/thread.h>
30
31 #include "pbd/basename.h"
32 #include "pbd/xml++.h"
33 #include "pbd/stacktrace.h"
34 #include "pbd/enumwriter.h"
35 #include "pbd/convert.h"
36
37 #include "evoral/Curve.hpp"
38
39 #include "ardour/audioregion.h"
40 #include "ardour/debug.h"
41 #include "ardour/session.h"
42 #include "ardour/dB.h"
43 #include "ardour/playlist.h"
44 #include "ardour/audiofilesource.h"
45 #include "ardour/region_factory.h"
46 #include "ardour/runtime_functions.h"
47 #include "ardour/transient_detector.h"
48 #include "ardour/progress.h"
49
50 #include "i18n.h"
51 #include <locale.h>
52
53 using namespace std;
54 using namespace ARDOUR;
55 using namespace PBD;
56
57 namespace ARDOUR {
58         namespace Properties {
59                 PBD::PropertyDescriptor<bool> envelope_active;
60                 PBD::PropertyDescriptor<bool> default_fade_in;
61                 PBD::PropertyDescriptor<bool> default_fade_out;
62                 PBD::PropertyDescriptor<bool> fade_in_active;
63                 PBD::PropertyDescriptor<bool> fade_out_active;
64                 PBD::PropertyDescriptor<float> scale_amplitude;
65         }
66 }
67
68 void
69 AudioRegion::make_property_quarks ()
70 {
71         Properties::envelope_active.property_id = g_quark_from_static_string (X_("envelope-active"));
72         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for envelope-active = %1\n",     Properties::envelope_active.property_id));
73         Properties::default_fade_in.property_id = g_quark_from_static_string (X_("default-fade-in"));
74         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for default-fade-in = %1\n",     Properties::default_fade_in.property_id));
75         Properties::default_fade_out.property_id = g_quark_from_static_string (X_("default-fade-out"));
76         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for default-fade-out = %1\n",    Properties::default_fade_out.property_id));
77         Properties::fade_in_active.property_id = g_quark_from_static_string (X_("fade-in-active"));
78         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for fade-in-active = %1\n",      Properties::fade_in_active.property_id));
79         Properties::fade_out_active.property_id = g_quark_from_static_string (X_("fade-out-active"));
80         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for fade-out-active = %1\n",     Properties::fade_out_active.property_id));
81         Properties::scale_amplitude.property_id = g_quark_from_static_string (X_("scale-amplitude"));
82         DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for scale-amplitude = %1\n",     Properties::scale_amplitude.property_id));
83 }
84
85 void
86 AudioRegion::register_properties ()
87 {
88         /* no need to register parent class properties */
89
90         add_property (_envelope_active);
91         add_property (_default_fade_in);
92         add_property (_default_fade_out);
93         add_property (_fade_in_active);
94         add_property (_fade_out_active);
95         add_property (_scale_amplitude);
96 }
97
98 #define AUDIOREGION_STATE_DEFAULT \
99         _envelope_active (Properties::envelope_active, false) \
100         , _default_fade_in (Properties::default_fade_in, true) \
101         , _default_fade_out (Properties::default_fade_out, true) \
102         , _fade_in_active (Properties::fade_in_active, true) \
103         , _fade_out_active (Properties::fade_out_active, true) \
104         , _scale_amplitude (Properties::scale_amplitude, 1.0)
105
106 #define AUDIOREGION_COPY_STATE(other) \
107         _envelope_active (Properties::envelope_active, other->_envelope_active) \
108         , _default_fade_in (Properties::default_fade_in, other->_default_fade_in) \
109         , _default_fade_out (Properties::default_fade_out, other->_default_fade_out) \
110         , _fade_in_active (Properties::fade_in_active, other->_fade_in_active) \
111         , _fade_out_active (Properties::fade_out_active, other->_fade_out_active) \
112         , _scale_amplitude (Properties::scale_amplitude, other->_scale_amplitude)
113 /* a Session will reset these to its chosen defaults by calling AudioRegion::set_default_fade() */
114
115 void
116 AudioRegion::init ()
117 {
118         register_properties ();
119
120         suspend_property_changes();
121         set_default_fades ();
122         set_default_envelope ();
123         resume_property_changes();
124
125         listen_to_my_curves ();
126         connect_to_analysis_changed ();
127         connect_to_header_position_offset_changed ();
128 }
129
130 /** Constructor for use by derived types only */
131 AudioRegion::AudioRegion (Session& s, framepos_t start, framecnt_t len, std::string name)
132         : Region (s, start, len, name, DataType::AUDIO)
133         , AUDIOREGION_STATE_DEFAULT
134         , _automatable (s)
135         , _fade_in (new AutomationList(Evoral::Parameter(FadeInAutomation)))
136         , _fade_out (new AutomationList(Evoral::Parameter(FadeOutAutomation)))
137         , _envelope (new AutomationList(Evoral::Parameter(EnvelopeAutomation)))
138         , _fade_in_suspended (0)
139         , _fade_out_suspended (0)
140         , _fade_in_is_xfade (false)
141         , _fade_out_is_xfade (false)
142 {
143         init ();
144         assert (_sources.size() == _master_sources.size());
145 }
146
147 /** Basic AudioRegion constructor */
148 AudioRegion::AudioRegion (const SourceList& srcs)
149         : Region (srcs)
150         , AUDIOREGION_STATE_DEFAULT
151         , _automatable(srcs[0]->session())
152         , _fade_in (new AutomationList(Evoral::Parameter(FadeInAutomation)))
153         , _fade_out (new AutomationList(Evoral::Parameter(FadeOutAutomation)))
154         , _envelope (new AutomationList(Evoral::Parameter(EnvelopeAutomation)))
155         , _fade_in_suspended (0)
156         , _fade_out_suspended (0)
157         , _fade_in_is_xfade (false)
158         , _fade_out_is_xfade (false)
159 {
160         init ();
161         assert (_sources.size() == _master_sources.size());
162 }
163
164 AudioRegion::AudioRegion (boost::shared_ptr<const AudioRegion> other)
165         : Region (other)
166         , AUDIOREGION_COPY_STATE (other)
167         , _automatable (other->session())
168         , _fade_in (new AutomationList (*other->_fade_in))
169         , _fade_out (new AutomationList (*other->_fade_out))
170           /* As far as I can see, the _envelope's times are relative to region position, and have nothing
171              to do with sources (and hence _start).  So when we copy the envelope, we just use the supplied offset.
172           */
173         , _envelope (new AutomationList (*other->_envelope, 0, other->_length))
174         , _fade_in_suspended (0)
175         , _fade_out_suspended (0)
176         , _fade_in_is_xfade (false)
177         , _fade_out_is_xfade (false)
178 {
179         /* don't use init here, because we got fade in/out from the other region
180         */
181         register_properties ();
182         listen_to_my_curves ();
183         connect_to_analysis_changed ();
184         connect_to_header_position_offset_changed ();
185
186         assert(_type == DataType::AUDIO);
187         assert (_sources.size() == _master_sources.size());
188 }
189
190 AudioRegion::AudioRegion (boost::shared_ptr<const AudioRegion> other, framecnt_t offset)
191         : Region (other, offset)
192         , AUDIOREGION_COPY_STATE (other)
193         , _automatable (other->session())
194         , _fade_in (new AutomationList (*other->_fade_in))
195         , _fade_out (new AutomationList (*other->_fade_out))
196           /* As far as I can see, the _envelope's times are relative to region position, and have nothing
197              to do with sources (and hence _start).  So when we copy the envelope, we just use the supplied offset.
198           */
199         , _envelope (new AutomationList (*other->_envelope, offset, other->_length))
200         , _fade_in_suspended (0)
201         , _fade_out_suspended (0)
202         , _fade_in_is_xfade (false)
203         , _fade_out_is_xfade (false)
204 {
205         /* don't use init here, because we got fade in/out from the other region
206         */
207         register_properties ();
208         listen_to_my_curves ();
209         connect_to_analysis_changed ();
210         connect_to_header_position_offset_changed ();
211
212         assert(_type == DataType::AUDIO);
213         assert (_sources.size() == _master_sources.size());
214 }
215
216 AudioRegion::AudioRegion (boost::shared_ptr<const AudioRegion> other, const SourceList& srcs)
217         : Region (boost::static_pointer_cast<const Region>(other), srcs)
218         , AUDIOREGION_COPY_STATE (other)
219         , _automatable (other->session())
220         , _fade_in (new AutomationList (*other->_fade_in))
221         , _fade_out (new AutomationList (*other->_fade_out))
222         , _envelope (new AutomationList (*other->_envelope))
223         , _fade_in_suspended (0)
224         , _fade_out_suspended (0)
225         , _fade_in_is_xfade (false)
226         , _fade_out_is_xfade (false)
227 {
228         /* make-a-sort-of-copy-with-different-sources constructor (used by audio filter) */
229
230         register_properties ();
231
232         listen_to_my_curves ();
233         connect_to_analysis_changed ();
234         connect_to_header_position_offset_changed ();
235
236         assert (_sources.size() == _master_sources.size());
237 }
238
239 AudioRegion::AudioRegion (SourceList& srcs)
240         : Region (srcs)
241         , AUDIOREGION_STATE_DEFAULT
242         , _automatable(srcs[0]->session())
243         , _fade_in (new AutomationList(Evoral::Parameter(FadeInAutomation)))
244         , _fade_out (new AutomationList(Evoral::Parameter(FadeOutAutomation)))
245         , _envelope (new AutomationList(Evoral::Parameter(EnvelopeAutomation)))
246         , _fade_in_suspended (0)
247         , _fade_out_suspended (0)
248         , _fade_in_is_xfade (false)
249         , _fade_out_is_xfade (false)
250 {
251         init ();
252
253         assert(_type == DataType::AUDIO);
254         assert (_sources.size() == _master_sources.size());
255 }
256
257 AudioRegion::~AudioRegion ()
258 {
259 }
260
261 void
262 AudioRegion::post_set (const PropertyChange& /*ignored*/)
263 {
264         if (!_sync_marked) {
265                 _sync_position = _start;
266         }
267
268         /* return to default fades if the existing ones are too long */
269
270         if (_left_of_split) {
271                 if (_fade_in->back()->when >= _length) {
272                         set_default_fade_in ();
273                 }
274                 set_default_fade_out ();
275                 _left_of_split = false;
276         }
277
278         if (_right_of_split) {
279                 if (_fade_out->back()->when >= _length) {
280                         set_default_fade_out ();
281                 }
282
283                 set_default_fade_in ();
284                 _right_of_split = false;
285         }
286
287         /* If _length changed, adjust our gain envelope accordingly */
288         _envelope->truncate_end (_length);
289 }
290
291 void
292 AudioRegion::connect_to_analysis_changed ()
293 {
294         for (SourceList::const_iterator i = _sources.begin(); i != _sources.end(); ++i) {
295                 (*i)->AnalysisChanged.connect_same_thread (*this, boost::bind (&AudioRegion::invalidate_transients, this));
296         }
297 }
298
299 void
300 AudioRegion::connect_to_header_position_offset_changed ()
301 {
302         set<boost::shared_ptr<Source> > unique_srcs;
303
304         for (SourceList::const_iterator i = _sources.begin(); i != _sources.end(); ++i) {
305
306                 /* connect only once to HeaderPositionOffsetChanged, even if sources are replicated
307                  */
308
309                 if (unique_srcs.find (*i) == unique_srcs.end ()) {
310                         unique_srcs.insert (*i);
311                         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource> (*i);
312                         if (afs) {
313                                 afs->HeaderPositionOffsetChanged.connect_same_thread (*this, boost::bind (&AudioRegion::source_offset_changed, this));
314                         }
315                 }
316         }
317 }
318
319 void
320 AudioRegion::listen_to_my_curves ()
321 {
322         _envelope->StateChanged.connect_same_thread (*this, boost::bind (&AudioRegion::envelope_changed, this));
323         _fade_in->StateChanged.connect_same_thread (*this, boost::bind (&AudioRegion::fade_in_changed, this));
324         _fade_out->StateChanged.connect_same_thread (*this, boost::bind (&AudioRegion::fade_out_changed, this));
325 }
326
327 void
328 AudioRegion::set_envelope_active (bool yn)
329 {
330         if (envelope_active() != yn) {
331                 _envelope_active = yn;
332                 send_change (PropertyChange (Properties::envelope_active));
333         }
334 }
335
336 ARDOUR::framecnt_t
337 AudioRegion::read_peaks (PeakData *buf, framecnt_t npeaks, framecnt_t offset, framecnt_t cnt, uint32_t chan_n, double samples_per_unit) const
338 {
339         if (chan_n >= _sources.size()) {
340                 return 0;
341         }
342
343         if (audio_source(chan_n)->read_peaks (buf, npeaks, offset, cnt, samples_per_unit)) {
344                 return 0;
345         } else {
346                 if (_scale_amplitude != 1.0f) {
347                         for (framecnt_t n = 0; n < npeaks; ++n) {
348                                 buf[n].max *= _scale_amplitude;
349                                 buf[n].min *= _scale_amplitude;
350                         }
351                 }
352                 return cnt;
353         }
354 }
355
356 /** @param buf Buffer to write data to (existing data will be overwritten).
357  *  @param pos Position to read from as an offset from the region position.
358  *  @param cnt Number of frames to read.
359  *  @param channel Channel to read from.
360  */
361 framecnt_t
362 AudioRegion::read (Sample* buf, framepos_t pos, framecnt_t cnt, int channel) const
363 {
364         /* raw read, no fades, no gain, nada */
365         return read_from_sources (_sources, _length, buf, _position + pos, cnt, channel);
366 }
367
368 framecnt_t
369 AudioRegion::master_read_at (Sample *buf, Sample* /*mixdown_buffer*/, float* /*gain_buffer*/,
370                              framepos_t position, framecnt_t cnt, uint32_t chan_n) const
371 {
372         /* do not read gain/scaling/fades and do not count this disk i/o in statistics */
373
374         assert (cnt >= 0);
375         return read_from_sources (
376                 _master_sources, _master_sources.front()->length (_master_sources.front()->timeline_position()),
377                 buf, position, cnt, chan_n
378                 );
379 }
380
381 /** @param buf Buffer to mix data into.
382  *  @param mixdown_buffer Scratch buffer for audio data.
383  *  @param gain_buffer Scratch buffer for gain data.
384  *  @param position Position within the session to read from.
385  *  @param cnt Number of frames to read.
386  *  @param chan_n Channel number to read.
387  */
388 framecnt_t
389 AudioRegion::read_at (Sample *buf, Sample *mixdown_buffer, float *gain_buffer,
390                       framepos_t position,
391                       framecnt_t cnt,
392                       uint32_t chan_n) const
393 {
394         /* We are reading data from this region into buf (possibly via mixdown_buffer).
395            The caller has verified that we cover the desired section.
396         */
397
398         /* See doc/region_read.svg for a drawing which might help to explain
399            what is going on.
400         */
401
402         assert (cnt >= 0);
403         
404         if (n_channels() == 0) {
405                 return 0;
406         }
407
408         if (muted()) {
409                 return 0; /* read nothing */
410         }
411
412         
413         /* WORK OUT WHERE TO GET DATA FROM */
414
415         framecnt_t to_read;
416
417         assert (position >= _position);
418         frameoffset_t const internal_offset = position - _position;
419
420         if (internal_offset >= _length) {
421                 return 0; /* read nothing */
422         }
423
424         if ((to_read = min (cnt, _length - internal_offset)) == 0) {
425                 return 0; /* read nothing */
426         }
427
428
429         /* COMPUTE DETAILS OF ANY FADES INVOLVED IN THIS READ */
430
431         /* Amount of fade in that we are dealing with in this read */
432         framecnt_t fade_in_limit = 0;
433
434         /* Offset from buf / mixdown_buffer of the start
435            of any fade out that we are dealing with
436         */
437         frameoffset_t fade_out_offset = 0;
438         
439         /* Amount of fade in that we are dealing with in this read */
440         framecnt_t fade_out_limit = 0;
441
442         framecnt_t fade_interval_start = 0;
443
444         /* Fade in */
445         
446         if (_fade_in_active && _session.config.get_use_region_fades()) {
447                 
448                 framecnt_t fade_in_length = (framecnt_t) _fade_in->back()->when;
449                 
450                 /* see if this read is within the fade in */
451                 
452                 if (internal_offset < fade_in_length) {
453                         fade_in_limit = min (to_read, fade_in_length - internal_offset);
454                 }
455         }
456         
457         /* Fade out */
458         
459         if (_fade_out_active && _session.config.get_use_region_fades()) {
460                 
461                 /* see if some part of this read is within the fade out */
462
463                 /* .................        >|            REGION
464                                              _length
465
466                                  {           }            FADE
467                                              fade_out_length
468                                  ^
469                                  _length - fade_out_length
470                         |--------------|
471                         ^internal_offset
472                                        ^internal_offset + to_read
473
474                                        we need the intersection of [internal_offset,internal_offset+to_read] with
475                                        [_length - fade_out_length, _length]
476
477                 */
478
479
480                 fade_interval_start = max (internal_offset, _length - framecnt_t (_fade_out->back()->when));
481                 framecnt_t fade_interval_end = min(internal_offset + to_read, _length.val());
482                 
483                 if (fade_interval_end > fade_interval_start) {
484                         /* (part of the) the fade out is in this buffer */
485                         fade_out_limit = fade_interval_end - fade_interval_start;
486                         fade_out_offset = fade_interval_start - internal_offset;
487                 }
488         }
489
490         /* READ DATA FROM THE SOURCE INTO mixdown_buffer.
491            We can never read directly into buf, since it may contain data
492            from a transparent region `below' this one in the stack; we
493            must always mix.
494         */
495
496         if (read_from_sources (_sources, _length, mixdown_buffer, position, to_read, chan_n) != to_read) {
497                 return 0;
498         }
499
500         /* APPLY REGULAR GAIN CURVES AND SCALING TO mixdown_buffer */
501
502         if (envelope_active())  {
503                 _envelope->curve().get_vector (internal_offset, internal_offset + to_read, gain_buffer, to_read);
504
505                 if (_scale_amplitude != 1.0f) {
506                         for (framecnt_t n = 0; n < to_read; ++n) {
507                                 mixdown_buffer[n] *= gain_buffer[n] * _scale_amplitude;
508                         }
509                 } else {
510                         for (framecnt_t n = 0; n < to_read; ++n) {
511                                 mixdown_buffer[n] *= gain_buffer[n];
512                         }
513                 }
514         } else if (_scale_amplitude != 1.0f) {
515                 apply_gain_to_buffer (mixdown_buffer, to_read, _scale_amplitude);
516         }
517
518
519         /* APPLY FADES TO THE DATA IN mixdown_buffer AND MIX THE RESULTS INTO
520          * buf. The key things to realize here: (1) the fade being applied is
521          * (as of April 26th 2012) just the inverse of the fade in curve (2) 
522          * "buf" contains data from lower regions already. So this operation
523          * fades out the existing material.
524          */
525
526         if (fade_in_limit != 0) {
527                 if (_inverse_fade_in) {
528
529                         /* explicit inverse fade in curve (e.g. for constant
530                          * power), so we have to fetch it.
531                          */
532
533                         _inverse_fade_in->curve().get_vector (internal_offset, internal_offset + fade_in_limit, gain_buffer, fade_in_limit);
534
535                         /* Fade the data from lower layers out */
536                         for (framecnt_t n = 0; n < fade_in_limit; ++n) {
537                                 buf[n] *= gain_buffer[n];
538                         }
539
540                         /* refill gain buffer with the fade in */
541
542                         _fade_in->curve().get_vector (internal_offset, internal_offset + fade_in_limit, gain_buffer, fade_in_limit);
543
544                 } else {
545
546                         /* no explicit inverse fade in, so just use (1 - fade
547                          * in) for the fade out of lower layers
548                          */
549
550                         _fade_in->curve().get_vector (internal_offset, internal_offset + fade_in_limit, gain_buffer, fade_in_limit);
551
552                         for (framecnt_t n = 0; n < fade_in_limit; ++n) {
553                                 buf[n] *= 1 - gain_buffer[n];
554                         }
555                 }
556
557                 /* Mix our newly-read data in, with the fade */
558                 for (framecnt_t n = 0; n < fade_in_limit; ++n) {
559                         buf[n] += mixdown_buffer[n] * gain_buffer[n];
560                 }
561         }
562
563         if (fade_out_limit != 0) {
564
565                 framecnt_t const curve_offset = fade_interval_start - (_length - _fade_out->back()->when);
566
567                 if (_inverse_fade_out) {
568
569                         _inverse_fade_out->curve().get_vector (curve_offset, curve_offset + fade_out_limit, gain_buffer, fade_out_limit);
570
571                         /* Fade the data from lower levels out */
572                         for (framecnt_t n = 0, m = fade_out_offset; n < fade_out_limit; ++n, ++m) {
573                                 buf[m] *= gain_buffer[n];
574                         }
575
576                         /* fetch the actual fade out */
577
578                         _fade_out->curve().get_vector (curve_offset, curve_offset + fade_out_limit, gain_buffer, fade_out_limit);
579
580                 } else {
581                         
582                         /* no explicit inverse fade out, so just use (1 - fade
583                          * out) for the fade in of lower layers
584                          */
585
586                         _fade_out->curve().get_vector (curve_offset, curve_offset + fade_out_limit, gain_buffer, fade_out_limit);
587                 
588                         for (framecnt_t n = 0, m = fade_out_offset; n < fade_out_limit; ++n, ++m) {
589                                 buf[m] *= 1 - gain_buffer[n];
590                         }
591                 }
592
593                 /* Mix our newly-read data out, with the fade */
594                 for (framecnt_t n = 0, m = fade_out_offset; n < fade_out_limit; ++n, ++m) {
595                         buf[m] += mixdown_buffer[m] * gain_buffer[n];
596                 }
597         }
598
599         
600         /* MIX THE REGION BODY FROM mixdown_buffer INTO buf */
601
602         mix_buffers_no_gain (buf + fade_in_limit, mixdown_buffer + fade_in_limit, to_read - fade_in_limit - fade_out_limit);
603
604         return to_read;
605 }
606
607 /** Read data directly from one of our sources, accounting for the situation when the track has a different channel
608  *  count to the region.
609  *
610  *  @param srcs Source list to get our source from.
611  *  @param limit Furthest that we should read, as an offset from the region position.
612  *  @param buf Buffer to write data into (existing contents of the buffer will be overwritten)
613  *  @param position Position to read from, in session frames.
614  *  @param cnt Number of frames to read.
615  *  @param chan_n Channel to read from.
616  *  @return Number of frames read.
617  */
618
619 framecnt_t
620 AudioRegion::read_from_sources (SourceList const & srcs, framecnt_t limit, Sample* buf, framepos_t position, framecnt_t cnt, uint32_t chan_n) const
621 {
622         frameoffset_t const internal_offset = position - _position;
623         if (internal_offset >= limit) {
624                 return 0;
625         }
626
627         framecnt_t const to_read = min (cnt, limit - internal_offset);
628         if (to_read == 0) {
629                 return 0;
630         }
631         
632         if (chan_n < n_channels()) {
633
634                 boost::shared_ptr<AudioSource> src = boost::dynamic_pointer_cast<AudioSource> (srcs[chan_n]);
635                 if (src->read (buf, _start + internal_offset, to_read) != to_read) {
636                         return 0; /* "read nothing" */
637                 }
638
639         } else {
640
641                 /* track is N-channel, this region has fewer channels; silence the ones
642                    we don't have.
643                 */
644
645                 if (Config->get_replicate_missing_region_channels()) {
646                         /* track is N-channel, this region has less channels, so use a relevant channel
647                          */
648
649                         uint32_t channel = n_channels() % chan_n;
650                         boost::shared_ptr<AudioSource> src = boost::dynamic_pointer_cast<AudioSource> (srcs[channel]);
651
652                         if (src->read (buf, _start + internal_offset, to_read) != to_read) {
653                                 return 0; /* "read nothing" */
654                         }
655                 }
656         }
657
658         return to_read;
659 }
660
661 XMLNode&
662 AudioRegion::state ()
663 {
664         XMLNode& node (Region::state ());
665         XMLNode *child;
666         char buf[64];
667         LocaleGuard lg (X_("POSIX"));
668
669         snprintf (buf, sizeof (buf), "%u", (uint32_t) _sources.size());
670         node.add_property ("channels", buf);
671
672         Stateful::add_properties (node);
673
674         child = node.add_child ("Envelope");
675
676         bool default_env = false;
677
678         // If there are only two points, the points are in the start of the region and the end of the region
679         // so, if they are both at 1.0f, that means the default region.
680
681         if (_envelope->size() == 2 &&
682             _envelope->front()->value == 1.0f &&
683             _envelope->back()->value==1.0f) {
684                 if (_envelope->front()->when == 0 && _envelope->back()->when == _length) {
685                         default_env = true;
686                 }
687         }
688
689         if (default_env) {
690                 child->add_property ("default", "yes");
691         } else {
692                 child->add_child_nocopy (_envelope->get_state ());
693         }
694
695         child = node.add_child (X_("FadeIn"));
696         child->add_property ("is-xfade", (_fade_in_is_xfade ? "yes" : "no"));
697
698         if (_default_fade_in) {
699                 child->add_property ("default", "yes");
700         } else {
701                 child->add_child_nocopy (_fade_in->get_state ());
702         }
703
704         if (_inverse_fade_in) {
705                 child = node.add_child (X_("InvFadeIn"));
706                 child->add_child_nocopy (_inverse_fade_in->get_state ());
707         }
708
709         child = node.add_child (X_("FadeOut"));
710         child->add_property ("is-xfade", (_fade_out_is_xfade ? "yes" : "no"));
711
712         if (_default_fade_out) {
713                 child->add_property ("default", "yes");
714         } else {
715                 child->add_child_nocopy (_fade_out->get_state ());
716         }
717
718         if (_inverse_fade_out) {
719                 child = node.add_child (X_("InvFadeOut"));
720                 child->add_child_nocopy (_inverse_fade_out->get_state ());
721         }
722
723         return node;
724 }
725
726 int
727 AudioRegion::_set_state (const XMLNode& node, int version, PropertyChange& what_changed, bool send)
728 {
729         const XMLNodeList& nlist = node.children();
730         const XMLProperty *prop;
731         LocaleGuard lg (X_("POSIX"));
732         boost::shared_ptr<Playlist> the_playlist (_playlist.lock());
733
734         suspend_property_changes ();
735
736         if (the_playlist) {
737                 the_playlist->freeze ();
738         }
739
740
741         /* this will set all our State members and stuff controlled by the Region.
742            It should NOT send any changed signals - that is our responsibility.
743         */
744
745         Region::_set_state (node, version, what_changed, false);
746
747         if ((prop = node.property ("scale-gain")) != 0) {
748                 float a = atof (prop->value().c_str());
749                 if (a != _scale_amplitude) {
750                         _scale_amplitude = a;
751                         what_changed.add (Properties::scale_amplitude);
752                 }
753         }
754
755         /* Now find envelope description and other related child items */
756
757         _envelope->freeze ();
758
759         for (XMLNodeConstIterator niter = nlist.begin(); niter != nlist.end(); ++niter) {
760                 XMLNode *child;
761                 XMLProperty *prop;
762
763                 child = (*niter);
764
765                 if (child->name() == "Envelope") {
766
767                         _envelope->clear ();
768
769                         if ((prop = child->property ("default")) != 0 || _envelope->set_state (*child, version)) {
770                                 set_default_envelope ();
771                         }
772
773                         _envelope->truncate_end (_length);
774
775
776                 } else if (child->name() == "FadeIn") {
777
778                         _fade_in->clear ();
779
780                         if (((prop = child->property ("default")) != 0 && string_is_affirmative (prop->value())) || (prop = child->property ("steepness")) != 0) {
781                                 set_default_fade_in ();
782                         } else {
783                                 XMLNode* grandchild = child->child ("AutomationList");
784                                 if (grandchild) {
785                                         _fade_in->set_state (*grandchild, version);
786                                 }
787                         }
788
789                         if ((prop = child->property ("is-xfade")) != 0) {
790                                 _fade_in_is_xfade = string_is_affirmative (prop->value());
791                         } else {
792                                 _fade_in_is_xfade = false;
793                         }
794
795                         if ((prop = child->property ("active")) != 0) {
796                                 if (string_is_affirmative (prop->value())) {
797                                         set_fade_in_active (true);
798                                 } else {
799                                         set_fade_in_active (false);
800                                 }
801                         }
802
803                 } else if (child->name() == "FadeOut") {
804
805                         _fade_out->clear ();
806
807                         if (((prop = child->property ("default")) != 0 && (string_is_affirmative (prop->value()))) || (prop = child->property ("steepness")) != 0) {
808                                 set_default_fade_out ();
809                         } else {
810                                 XMLNode* grandchild = child->child ("AutomationList");
811                                 if (grandchild) {
812                                         _fade_out->set_state (*grandchild, version);
813                                 }
814                         }
815
816                         if ((prop = child->property ("is-xfade")) != 0) {
817                                 _fade_out_is_xfade = string_is_affirmative (prop->value());
818                         } else {
819                                 _fade_out_is_xfade = false;
820                         }
821         
822                 if ((prop = child->property ("active")) != 0) {
823                                 if (string_is_affirmative (prop->value())) {
824                                         set_fade_out_active (true);
825                                 } else {
826                                         set_fade_out_active (false);
827                                 }
828                         }
829
830                 } else if (child->name() == "InvFadeIn") {
831                         XMLNode* grandchild = child->child ("AutomationList");
832                         if (grandchild) {
833                                 if (!_inverse_fade_in) {
834                                         _inverse_fade_in.reset (new AutomationList (Evoral::Parameter (FadeInAutomation)));
835                                 }
836                                 _inverse_fade_in->set_state (*grandchild, version);
837                         }
838                 } else if (child->name() == "InvFadeOut") {
839                         XMLNode* grandchild = child->child ("AutomationList");
840                         if (grandchild) {
841                                 if (!_inverse_fade_out) {
842                                         _inverse_fade_out.reset (new AutomationList (Evoral::Parameter (FadeOutAutomation)));
843                                 }
844                                 _inverse_fade_out->set_state (*grandchild, version);
845                         }
846                 }
847         }
848
849         _envelope->thaw ();
850         resume_property_changes ();
851
852         if (send) {
853                 send_change (what_changed);
854         }
855
856         if (the_playlist) {
857                 the_playlist->thaw ();
858         }
859
860         return 0;
861 }
862
863 int
864 AudioRegion::set_state (const XMLNode& node, int version)
865 {
866         PropertyChange what_changed;
867         return _set_state (node, version, what_changed, true);
868 }
869
870 void
871 AudioRegion::set_fade_in_shape (FadeShape shape)
872 {
873         set_fade_in (shape, (framecnt_t) _fade_in->back()->when);
874 }
875
876 void
877 AudioRegion::set_fade_out_shape (FadeShape shape)
878 {
879         set_fade_out (shape, (framecnt_t) _fade_out->back()->when);
880 }
881
882 void
883 AudioRegion::set_fade_in (boost::shared_ptr<AutomationList> f)
884 {
885         _fade_in->freeze ();
886         *_fade_in = *f;
887         _fade_in->thaw ();
888         _default_fade_in = false;
889
890         send_change (PropertyChange (Properties::fade_in));
891 }
892
893 void
894 AudioRegion::set_fade_in (FadeShape shape, framecnt_t len)
895 {
896         _fade_in->freeze ();
897         _fade_in->clear ();
898
899         switch (shape) {
900         case FadeLinear:
901                 _fade_in->fast_simple_add (0.0, 0.0);
902                 _fade_in->fast_simple_add (len, 1.0);
903                 _inverse_fade_in.reset ();
904                 break;
905
906         case FadeFast:
907                 _fade_in->fast_simple_add (0, 0);
908                 _fade_in->fast_simple_add (len * 0.389401, 0.0333333);
909                 _fade_in->fast_simple_add (len * 0.629032, 0.0861111);
910                 _fade_in->fast_simple_add (len * 0.829493, 0.233333);
911                 _fade_in->fast_simple_add (len * 0.9447, 0.483333);
912                 _fade_in->fast_simple_add (len * 0.976959, 0.697222);
913                 _fade_in->fast_simple_add (len, 1);
914                 _inverse_fade_in.reset ();
915                 break;
916
917         case FadeSlow:
918                 _fade_in->fast_simple_add (0, 0);
919                 _fade_in->fast_simple_add (len * 0.0207373, 0.197222);
920                 _fade_in->fast_simple_add (len * 0.0645161, 0.525);
921                 _fade_in->fast_simple_add (len * 0.152074, 0.802778);
922                 _fade_in->fast_simple_add (len * 0.276498, 0.919444);
923                 _fade_in->fast_simple_add (len * 0.481567, 0.980556);
924                 _fade_in->fast_simple_add (len * 0.767281, 1);
925                 _fade_in->fast_simple_add (len, 1);
926                 _inverse_fade_in.reset ();
927                 break;
928
929         case FadeLogA:
930                 _fade_in->fast_simple_add (0, 0);
931                 _fade_in->fast_simple_add (len * 0.0737327, 0.308333);
932                 _fade_in->fast_simple_add (len * 0.246544, 0.658333);
933                 _fade_in->fast_simple_add (len * 0.470046, 0.886111);
934                 _fade_in->fast_simple_add (len * 0.652074, 0.972222);
935                 _fade_in->fast_simple_add (len * 0.771889, 0.988889);
936                 _fade_in->fast_simple_add (len, 1);
937                 _inverse_fade_in.reset ();
938                 break;
939
940         case FadeLogB:
941                 _fade_in->fast_simple_add (0, 0);
942                 _fade_in->fast_simple_add (len * 0.304147, 0.0694444);
943                 _fade_in->fast_simple_add (len * 0.529954, 0.152778);
944                 _fade_in->fast_simple_add (len * 0.725806, 0.333333);
945                 _fade_in->fast_simple_add (len * 0.847926, 0.558333);
946                 _fade_in->fast_simple_add (len * 0.919355, 0.730556);
947                 _fade_in->fast_simple_add (len, 1);
948                 _inverse_fade_in.reset ();
949                 break;
950
951         case FadeConstantPowerMinus3dB:
952                 _fade_in->fast_simple_add (0.0, 0.0);
953                 _fade_in->fast_simple_add ((len * 0.166667), 0.282192);
954                 _fade_in->fast_simple_add ((len * 0.333333), 0.518174);
955                 _fade_in->fast_simple_add ((len * 0.500000), 0.707946);
956                 _fade_in->fast_simple_add ((len * 0.666667), 0.851507);
957                 _fade_in->fast_simple_add ((len * 0.833333), 0.948859);
958                 _fade_in->fast_simple_add (len, 1.0);
959
960                 /* setup complementary fade out for lower layers */
961
962                 if (!_inverse_fade_in) {
963                         _inverse_fade_in.reset (new AutomationList (Evoral::Parameter (FadeInAutomation)));
964                 }
965
966                 _inverse_fade_in->clear ();
967                 _inverse_fade_in->fast_simple_add (0.0, 1.0);
968                 _inverse_fade_in->fast_simple_add ((len * 0.166667), 0.948859);
969                 _inverse_fade_in->fast_simple_add ((len * 0.333333), 0.851507);
970                 _inverse_fade_in->fast_simple_add ((len * 0.500000), 0.707946);
971                 _inverse_fade_in->fast_simple_add ((len * 0.666667), 0.518174);
972                 _inverse_fade_in->fast_simple_add ((len * 0.833333), 0.282192);
973                 _inverse_fade_in->fast_simple_add (len, 0.0);
974
975                 break;
976                 
977         case FadeConstantPowerMinus6dB:
978                 _fade_in->fast_simple_add (0.0, 0.0);
979                 _fade_in->fast_simple_add ((len * 0.166667), 0.166366);
980                 _fade_in->fast_simple_add ((len * 0.333333), 0.332853);
981                 _fade_in->fast_simple_add ((len * 0.500000), 0.499459);
982                 _fade_in->fast_simple_add ((len * 0.666667), 0.666186);
983                 _fade_in->fast_simple_add ((len * 0.833333), 0.833033);
984                 _fade_in->fast_simple_add (len, 1.0);
985
986                 /* setup complementary fade out for lower layers */
987
988                 if (!_inverse_fade_in) {
989                         _inverse_fade_in.reset (new AutomationList (Evoral::Parameter (FadeInAutomation)));
990                 }
991
992                 _inverse_fade_in->clear ();
993                 _inverse_fade_in->fast_simple_add (0.0, 1.0);
994                 _inverse_fade_in->fast_simple_add ((len * 0.166667), 0.833033);
995                 _inverse_fade_in->fast_simple_add ((len * 0.333333), 0.666186);
996                 _inverse_fade_in->fast_simple_add ((len * 0.500000), 0.499459);
997                 _inverse_fade_in->fast_simple_add ((len * 0.666667), 0.332853);
998                 _inverse_fade_in->fast_simple_add ((len * 0.833333), 0.166366);
999                 _inverse_fade_in->fast_simple_add (len, 0.0);
1000
1001                 break;
1002         }
1003
1004         _default_fade_in = false;
1005         _fade_in->thaw ();
1006         send_change (PropertyChange (Properties::fade_in));
1007 }
1008
1009 void
1010 AudioRegion::set_fade_out (boost::shared_ptr<AutomationList> f)
1011 {
1012         _fade_out->freeze ();
1013         *_fade_out = *f;
1014         _fade_out->thaw ();
1015         _default_fade_out = false;
1016
1017         send_change (PropertyChange (Properties::fade_in));
1018 }
1019
1020 void
1021 AudioRegion::set_fade_out (FadeShape shape, framecnt_t len)
1022 {
1023         _fade_out->freeze ();
1024         _fade_out->clear ();
1025
1026         switch (shape) {
1027         case FadeFast:
1028                 _fade_out->fast_simple_add (0.0, 1.0);
1029                 _fade_out->fast_simple_add (len * 0.023041, 0.697222);
1030                 _fade_out->fast_simple_add (len * 0.0553,   0.483333);
1031                 _fade_out->fast_simple_add (len * 0.170507, 0.233333);
1032                 _fade_out->fast_simple_add (len * 0.370968, 0.0861111);
1033                 _fade_out->fast_simple_add (len * 0.610599, 0.0333333);
1034                 _fade_out->fast_simple_add (1.0, 0.0);
1035                 _inverse_fade_out.reset ();
1036                 break;
1037
1038         case FadeLogA:
1039                 _fade_out->fast_simple_add (0, 1.0);
1040                 _fade_out->fast_simple_add (len * 0.228111, 0.988889);
1041                 _fade_out->fast_simple_add (len * 0.347926, 0.972222);
1042                 _fade_out->fast_simple_add (len * 0.529954, 0.886111);
1043                 _fade_out->fast_simple_add (len * 0.753456, 0.658333);
1044                 _fade_out->fast_simple_add (len * 0.9262673, 0.308333);
1045                 _fade_out->fast_simple_add (len, 0.0);
1046                 _inverse_fade_out.reset ();
1047                 break;
1048
1049         case FadeSlow:
1050                 _fade_out->fast_simple_add (0.0, 1.0);
1051                 _fade_out->fast_simple_add (len * 0.305556, 1);
1052                 _fade_out->fast_simple_add (len * 0.548611, 0.991736);
1053                 _fade_out->fast_simple_add (len * 0.759259, 0.931129);
1054                 _fade_out->fast_simple_add (len * 0.918981, 0.68595);
1055                 _fade_out->fast_simple_add (len * 0.976852, 0.22865);
1056                 _fade_out->fast_simple_add (len, 0.0);
1057                 _inverse_fade_out.reset ();
1058                 break;
1059
1060         case FadeLogB:
1061                 _fade_out->fast_simple_add (0.0, 1.0);
1062                 _fade_out->fast_simple_add (len * 0.080645, 0.730556);
1063                 _fade_out->fast_simple_add (len * 0.277778, 0.289256);
1064                 _fade_out->fast_simple_add (len * 0.470046, 0.152778);
1065                 _fade_out->fast_simple_add (len * 0.695853, 0.0694444);
1066                 _fade_out->fast_simple_add (len, 0.0);
1067                 _inverse_fade_out.reset ();     
1068                 break;
1069
1070         case FadeLinear:
1071                 _fade_out->fast_simple_add (0.0, 1.0);
1072                 _fade_out->fast_simple_add (len, 0.0);
1073                 _inverse_fade_out.reset ();
1074                 break;
1075
1076         case FadeConstantPowerMinus3dB:
1077                 _fade_out->fast_simple_add (0.0, 1.0);
1078                 _fade_out->fast_simple_add ((len * 0.166667), 0.948859);
1079                 _fade_out->fast_simple_add ((len * 0.333333), 0.851507);
1080                 _fade_out->fast_simple_add ((len * 0.500000), 0.707946);
1081                 _fade_out->fast_simple_add ((len * 0.666667), 0.518174);
1082                 _fade_out->fast_simple_add ((len * 0.833333), 0.282192);
1083                 _fade_out->fast_simple_add (len, 0.0);
1084
1085                 /* setup complementary fade in for lower layers */
1086
1087                 if (!_inverse_fade_out) {
1088                         _inverse_fade_out.reset (new AutomationList (Evoral::Parameter (FadeOutAutomation)));
1089                 }
1090
1091                 _inverse_fade_out->clear ();
1092                 _inverse_fade_out->fast_simple_add (0.0, 0.0);
1093                 _inverse_fade_out->fast_simple_add ((len * 0.166667), 0.282192);
1094                 _inverse_fade_out->fast_simple_add ((len * 0.333333), 0.518174);
1095                 _inverse_fade_out->fast_simple_add ((len * 0.500000), 0.707946);
1096                 _inverse_fade_out->fast_simple_add ((len * 0.666667), 0.851507);
1097                 _inverse_fade_out->fast_simple_add ((len * 0.833333), 0.948859);
1098                 _inverse_fade_out->fast_simple_add (len, 1.0);
1099
1100                 break;
1101
1102         case FadeConstantPowerMinus6dB:
1103                 _fade_out->fast_simple_add (0.0, 1.0);
1104                 _fade_out->fast_simple_add ((len * 0.166667), 0.833033);
1105                 _fade_out->fast_simple_add ((len * 0.333333), 0.666186);
1106                 _fade_out->fast_simple_add ((len * 0.500000), 0.499459);
1107                 _fade_out->fast_simple_add ((len * 0.666667), 0.332853);
1108                 _fade_out->fast_simple_add ((len * 0.833333), 0.166366);
1109                 _fade_out->fast_simple_add (len, 0.0);
1110
1111                 /* setup complementary fade in for lower layers */
1112
1113                 if (!_inverse_fade_out) {
1114                         _inverse_fade_out.reset (new AutomationList (Evoral::Parameter (FadeOutAutomation)));
1115                 }
1116
1117                 _inverse_fade_out->clear ();
1118                 _inverse_fade_out->fast_simple_add (0.0, 0.0);
1119                 _inverse_fade_out->fast_simple_add ((len * 0.166667), 0.166366);
1120                 _inverse_fade_out->fast_simple_add ((len * 0.333333), 0.332853);
1121                 _inverse_fade_out->fast_simple_add ((len * 0.500000), 0.499459);
1122                 _inverse_fade_out->fast_simple_add ((len * 0.666667), 0.666186);
1123                 _inverse_fade_out->fast_simple_add ((len * 0.833333), 0.833033);
1124                 _inverse_fade_out->fast_simple_add (len, 1.0);
1125
1126                 break;
1127         }
1128
1129         _default_fade_out = false;
1130         _fade_out->thaw ();
1131         send_change (PropertyChange (Properties::fade_in));
1132 }
1133
1134 void
1135 AudioRegion::set_fade_in_length (framecnt_t len)
1136 {
1137         if (len > _length) {
1138                 len = _length - 1;
1139         }
1140         
1141         if (len < 64) {
1142                 len = 64;
1143         }
1144
1145         bool changed = _fade_in->extend_to (len);
1146
1147         if (changed) {
1148                 if (_inverse_fade_in) {
1149                         _inverse_fade_in->extend_to (len);
1150                 }
1151                 _default_fade_in = false;
1152                 send_change (PropertyChange (Properties::fade_in));
1153         }
1154 }
1155
1156 void
1157 AudioRegion::set_fade_out_length (framecnt_t len)
1158 {
1159         if (len > _length) {
1160                 len = _length - 1;
1161         }
1162
1163         if (len < 64) {
1164                 len = 64;
1165         }
1166
1167         bool changed =  _fade_out->extend_to (len);
1168
1169         if (changed) {
1170                 if (_inverse_fade_out) {
1171                         _inverse_fade_out->extend_to (len);
1172                 }
1173                 _default_fade_out = false;
1174                 send_change (PropertyChange (Properties::fade_out));
1175         }
1176 }
1177
1178 void
1179 AudioRegion::set_fade_in_active (bool yn)
1180 {
1181         if (yn == _fade_in_active) {
1182                 return;
1183         }
1184
1185         _fade_in_active = yn;
1186         send_change (PropertyChange (Properties::fade_in_active));
1187 }
1188
1189 void
1190 AudioRegion::set_fade_out_active (bool yn)
1191 {
1192         if (yn == _fade_out_active) {
1193                 return;
1194         }
1195         _fade_out_active = yn;
1196         send_change (PropertyChange (Properties::fade_out_active));
1197 }
1198
1199 bool
1200 AudioRegion::fade_in_is_default () const
1201 {
1202         return _fade_in->size() == 2 && _fade_in->front()->when == 0 && _fade_in->back()->when == 64;
1203 }
1204
1205 bool
1206 AudioRegion::fade_out_is_default () const
1207 {
1208         return _fade_out->size() == 2 && _fade_out->front()->when == 0 && _fade_out->back()->when == 64;
1209 }
1210
1211 void
1212 AudioRegion::set_default_fade_in ()
1213 {
1214         _fade_in_suspended = 0;
1215         _fade_in_is_xfade = false;
1216         set_fade_in (FadeLinear, 64);
1217 }
1218
1219 void
1220 AudioRegion::set_default_fade_out ()
1221 {
1222         _fade_out_suspended = 0;
1223         _fade_out_is_xfade = false;
1224         set_fade_out (FadeLinear, 64);
1225 }
1226
1227 void
1228 AudioRegion::set_default_fades ()
1229 {
1230         set_default_fade_in ();
1231         set_default_fade_out ();
1232 }
1233
1234 void
1235 AudioRegion::set_default_envelope ()
1236 {
1237         _envelope->freeze ();
1238         _envelope->clear ();
1239         _envelope->fast_simple_add (0, 1.0f);
1240         _envelope->fast_simple_add (_length, 1.0f);
1241         _envelope->thaw ();
1242 }
1243
1244 void
1245 AudioRegion::recompute_at_end ()
1246 {
1247         /* our length has changed. recompute a new final point by interpolating
1248            based on the the existing curve.
1249         */
1250
1251         _envelope->freeze ();
1252         _envelope->truncate_end (_length);
1253         _envelope->thaw ();
1254
1255         suspend_property_changes();
1256
1257         if (_left_of_split) {
1258                 set_default_fade_out ();
1259                 _left_of_split = false;
1260         } else if (_fade_out->back()->when > _length) {
1261                 _fade_out->extend_to (_length);
1262                 send_change (PropertyChange (Properties::fade_out));
1263         }
1264
1265         if (_fade_in->back()->when > _length) {
1266                 _fade_in->extend_to (_length);
1267                 send_change (PropertyChange (Properties::fade_in));
1268         }
1269
1270         resume_property_changes();
1271 }
1272
1273 void
1274 AudioRegion::recompute_at_start ()
1275 {
1276         /* as above, but the shift was from the front */
1277
1278         _envelope->truncate_start (_length);
1279
1280         suspend_property_changes();
1281
1282         if (_right_of_split) {
1283                 set_default_fade_in ();
1284                 _right_of_split = false;
1285         } else if (_fade_in->back()->when > _length) {
1286                 _fade_in->extend_to (_length);
1287                 send_change (PropertyChange (Properties::fade_in));
1288         }
1289
1290         if (_fade_out->back()->when > _length) {
1291                 _fade_out->extend_to (_length);
1292                 send_change (PropertyChange (Properties::fade_out));
1293         }
1294
1295         resume_property_changes();
1296 }
1297
1298 int
1299 AudioRegion::separate_by_channel (Session& /*session*/, vector<boost::shared_ptr<Region> >& v) const
1300 {
1301         SourceList srcs;
1302         string new_name;
1303         int n = 0;
1304
1305         if (_sources.size() < 2) {
1306                 return 0;
1307         }
1308
1309         for (SourceList::const_iterator i = _sources.begin(); i != _sources.end(); ++i) {
1310                 srcs.clear ();
1311                 srcs.push_back (*i);
1312
1313                 new_name = _name;
1314
1315                 if (_sources.size() == 2) {
1316                         if (n == 0) {
1317                                 new_name += "-L";
1318                         } else {
1319                                 new_name += "-R";
1320                         }
1321                 } else {
1322                         new_name += '-';
1323                         new_name += ('0' + n + 1);
1324                 }
1325
1326                 /* create a copy with just one source. prevent if from being thought of as
1327                    "whole file" even if it covers the entire source file(s).
1328                  */
1329
1330                 PropertyList plist;
1331
1332                 plist.add (Properties::start, _start.val());
1333                 plist.add (Properties::length, _length.val());
1334                 plist.add (Properties::name, new_name);
1335                 plist.add (Properties::layer, layer ());
1336
1337                 v.push_back(RegionFactory::create (srcs, plist));
1338                 v.back()->set_whole_file (false);
1339
1340                 ++n;
1341         }
1342
1343         return 0;
1344 }
1345
1346 framecnt_t
1347 AudioRegion::read_raw_internal (Sample* buf, framepos_t pos, framecnt_t cnt, int channel) const
1348 {
1349         return audio_source(channel)->read (buf, pos, cnt);
1350 }
1351
1352 void
1353 AudioRegion::set_scale_amplitude (gain_t g)
1354 {
1355         boost::shared_ptr<Playlist> pl (playlist());
1356
1357         _scale_amplitude = g;
1358
1359         /* tell the diskstream we're in */
1360
1361         if (pl) {
1362                 pl->ContentsChanged();
1363         }
1364
1365         /* tell everybody else */
1366
1367         send_change (PropertyChange (Properties::scale_amplitude));
1368 }
1369
1370 /** @return the maximum (linear) amplitude of the region, or a -ve
1371  *  number if the Progress object reports that the process was cancelled.
1372  */
1373 double
1374 AudioRegion::maximum_amplitude (Progress* p) const
1375 {
1376         framepos_t fpos = _start;
1377         framepos_t const fend = _start + _length;
1378         double maxamp = 0;
1379
1380         framecnt_t const blocksize = 64 * 1024;
1381         Sample buf[blocksize];
1382
1383         while (fpos < fend) {
1384
1385                 uint32_t n;
1386
1387                 framecnt_t const to_read = min (fend - fpos, blocksize);
1388
1389                 for (n = 0; n < n_channels(); ++n) {
1390
1391                         /* read it in */
1392
1393                         if (read_raw_internal (buf, fpos, to_read, n) != to_read) {
1394                                 return 0;
1395                         }
1396
1397                         maxamp = compute_peak (buf, to_read, maxamp);
1398                 }
1399
1400                 fpos += to_read;
1401                 if (p) {
1402                         p->set_progress (float (fpos - _start) / _length);
1403                         if (p->cancelled ()) {
1404                                 return -1;
1405                         }
1406                 }
1407         }
1408
1409         return maxamp;
1410 }
1411
1412 /** Normalize using a given maximum amplitude and target, so that region
1413  *  _scale_amplitude becomes target / max_amplitude.
1414  */
1415 void
1416 AudioRegion::normalize (float max_amplitude, float target_dB)
1417 {
1418         gain_t target = dB_to_coefficient (target_dB);
1419
1420         if (target == 1.0f) {
1421                 /* do not normalize to precisely 1.0 (0 dBFS), to avoid making it appear
1422                    that we may have clipped.
1423                 */
1424                 target -= FLT_EPSILON;
1425         }
1426
1427         if (max_amplitude == 0.0f) {
1428                 /* don't even try */
1429                 return;
1430         }
1431
1432         if (max_amplitude == target) {
1433                 /* we can't do anything useful */
1434                 return;
1435         }
1436
1437         set_scale_amplitude (target / max_amplitude);
1438 }
1439
1440 void
1441 AudioRegion::fade_in_changed ()
1442 {
1443         send_change (PropertyChange (Properties::fade_in));
1444 }
1445
1446 void
1447 AudioRegion::fade_out_changed ()
1448 {
1449         send_change (PropertyChange (Properties::fade_out));
1450 }
1451
1452 void
1453 AudioRegion::envelope_changed ()
1454 {
1455         send_change (PropertyChange (Properties::envelope));
1456 }
1457
1458 void
1459 AudioRegion::suspend_fade_in ()
1460 {
1461         if (++_fade_in_suspended == 1) {
1462                 if (fade_in_is_default()) {
1463                         set_fade_in_active (false);
1464                 }
1465         }
1466 }
1467
1468 void
1469 AudioRegion::resume_fade_in ()
1470 {
1471         if (--_fade_in_suspended == 0 && _fade_in_suspended) {
1472                 set_fade_in_active (true);
1473         }
1474 }
1475
1476 void
1477 AudioRegion::suspend_fade_out ()
1478 {
1479         if (++_fade_out_suspended == 1) {
1480                 if (fade_out_is_default()) {
1481                         set_fade_out_active (false);
1482                 }
1483         }
1484 }
1485
1486 void
1487 AudioRegion::resume_fade_out ()
1488 {
1489         if (--_fade_out_suspended == 0 &&_fade_out_suspended) {
1490                 set_fade_out_active (true);
1491         }
1492 }
1493
1494 bool
1495 AudioRegion::speed_mismatch (float sr) const
1496 {
1497         if (_sources.empty()) {
1498                 /* impossible, but ... */
1499                 return false;
1500         }
1501
1502         float fsr = audio_source()->sample_rate();
1503
1504         return fsr != sr;
1505 }
1506
1507 void
1508 AudioRegion::source_offset_changed ()
1509 {
1510         /* XXX this fixes a crash that should not occur. It does occur
1511            becauses regions are not being deleted when a session
1512            is unloaded. That bug must be fixed.
1513         */
1514
1515         if (_sources.empty()) {
1516                 return;
1517         }
1518
1519         boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(_sources.front());
1520
1521         if (afs && afs->destructive()) {
1522                 // set_start (source()->natural_position(), this);
1523                 set_position (source()->natural_position());
1524         }
1525 }
1526
1527 boost::shared_ptr<AudioSource>
1528 AudioRegion::audio_source (uint32_t n) const
1529 {
1530         // Guaranteed to succeed (use a static cast for speed?)
1531         return boost::dynamic_pointer_cast<AudioSource>(source(n));
1532 }
1533
1534 int
1535 AudioRegion::adjust_transients (frameoffset_t delta)
1536 {
1537         for (AnalysisFeatureList::iterator x = _transients.begin(); x != _transients.end(); ++x) {
1538                 (*x) = (*x) + delta;
1539         }
1540
1541         send_change (PropertyChange (Properties::valid_transients));
1542
1543         return 0;
1544 }
1545
1546 int
1547 AudioRegion::update_transient (framepos_t old_position, framepos_t new_position)
1548 {
1549         for (AnalysisFeatureList::iterator x = _transients.begin(); x != _transients.end(); ++x) {
1550                 if ((*x) == old_position) {
1551                         (*x) = new_position;
1552                         send_change (PropertyChange (Properties::valid_transients));
1553
1554                         break;
1555                 }
1556         }
1557
1558         return 0;
1559 }
1560
1561 void
1562 AudioRegion::add_transient (framepos_t where)
1563 {
1564         _transients.push_back(where);
1565         _valid_transients = true;
1566
1567         send_change (PropertyChange (Properties::valid_transients));
1568 }
1569
1570 void
1571 AudioRegion::remove_transient (framepos_t where)
1572 {
1573         _transients.remove(where);
1574         _valid_transients = true;
1575
1576         send_change (PropertyChange (Properties::valid_transients));
1577 }
1578
1579 int
1580 AudioRegion::set_transients (AnalysisFeatureList& results)
1581 {
1582         _transients.clear();
1583         _transients = results;
1584         _valid_transients = true;
1585
1586         send_change (PropertyChange (Properties::valid_transients));
1587
1588         return 0;
1589 }
1590
1591 int
1592 AudioRegion::get_transients (AnalysisFeatureList& results, bool force_new)
1593 {
1594         boost::shared_ptr<Playlist> pl = playlist();
1595
1596         if (!pl) {
1597                 return -1;
1598         }
1599
1600         if (_valid_transients && !force_new) {
1601                 results = _transients;
1602                 return 0;
1603         }
1604
1605         SourceList::iterator s;
1606
1607         for (s = _sources.begin() ; s != _sources.end(); ++s) {
1608                 if (!(*s)->has_been_analysed()) {
1609                         cerr << "For " << name() << " source " << (*s)->name() << " has not been analyzed\n";
1610                         break;
1611                 }
1612         }
1613
1614         if (s == _sources.end()) {
1615                 /* all sources are analyzed, merge data from each one */
1616
1617                 for (s = _sources.begin() ; s != _sources.end(); ++s) {
1618
1619                         /* find the set of transients within the bounds of this region */
1620
1621                         AnalysisFeatureList::iterator low = lower_bound ((*s)->transients.begin(),
1622                                                                          (*s)->transients.end(),
1623                                                                          _start);
1624
1625                         AnalysisFeatureList::iterator high = upper_bound ((*s)->transients.begin(),
1626                                                                           (*s)->transients.end(),
1627                                                                           _start + _length);
1628
1629                         /* and add them */
1630
1631                         results.insert (results.end(), low, high);
1632                 }
1633
1634                 TransientDetector::cleanup_transients (results, pl->session().frame_rate(), 3.0);
1635
1636                 /* translate all transients to current position */
1637
1638                 for (AnalysisFeatureList::iterator x = results.begin(); x != results.end(); ++x) {
1639                         (*x) -= _start;
1640                         (*x) += _position;
1641                 }
1642
1643                 _transients = results;
1644                 _valid_transients = true;
1645
1646                 return 0;
1647         }
1648
1649         /* no existing/complete transient info */
1650
1651         static bool analyse_dialog_shown = false; /* global per instance of Ardour */
1652
1653         if (!Config->get_auto_analyse_audio()) {
1654                 if (!analyse_dialog_shown) {
1655                         pl->session().Dialog (_("\
1656 You have requested an operation that requires audio analysis.\n\n\
1657 You currently have \"auto-analyse-audio\" disabled, which means \
1658 that transient data must be generated every time it is required.\n\n\
1659 If you are doing work that will require transient data on a \
1660 regular basis, you should probably enable \"auto-analyse-audio\" \
1661 then quit ardour and restart.\n\n\
1662 This dialog will not display again.  But you may notice a slight delay \
1663 in this and future transient-detection operations.\n\
1664 "));
1665                         analyse_dialog_shown = true;
1666                 }
1667         }
1668
1669         TransientDetector t (pl->session().frame_rate());
1670         bool existing_results = !results.empty();
1671
1672         _transients.clear ();
1673         _valid_transients = false;
1674
1675         for (uint32_t i = 0; i < n_channels(); ++i) {
1676
1677                 AnalysisFeatureList these_results;
1678
1679                 t.reset ();
1680
1681                 if (t.run ("", this, i, these_results)) {
1682                         return -1;
1683                 }
1684
1685                 /* translate all transients to give absolute position */
1686
1687                 for (AnalysisFeatureList::iterator i = these_results.begin(); i != these_results.end(); ++i) {
1688                         (*i) += _position;
1689                 }
1690
1691                 /* merge */
1692
1693                 _transients.insert (_transients.end(), these_results.begin(), these_results.end());
1694         }
1695
1696         if (!results.empty()) {
1697                 if (existing_results) {
1698
1699                         /* merge our transients into the existing ones, then clean up
1700                            those.
1701                         */
1702
1703                         results.insert (results.end(), _transients.begin(), _transients.end());
1704                         TransientDetector::cleanup_transients (results, pl->session().frame_rate(), 3.0);
1705                 }
1706
1707                 /* make sure ours are clean too */
1708
1709                 TransientDetector::cleanup_transients (_transients, pl->session().frame_rate(), 3.0);
1710
1711         } else {
1712
1713                 TransientDetector::cleanup_transients (_transients, pl->session().frame_rate(), 3.0);
1714                 results = _transients;
1715         }
1716
1717         _valid_transients = true;
1718
1719         return 0;
1720 }
1721
1722 /** Find areas of `silence' within a region.
1723  *
1724  *  @param threshold Threshold below which signal is considered silence (as a sample value)
1725  *  @param min_length Minimum length of silent period to be reported.
1726  *  @return Silent intervals, measured relative to the region start in the source
1727  */
1728
1729 AudioIntervalResult
1730 AudioRegion::find_silence (Sample threshold, framecnt_t min_length, InterThreadInfo& itt) const
1731 {
1732         framecnt_t const block_size = 64 * 1024;
1733         boost::scoped_array<Sample> loudest (new Sample[block_size]);
1734         boost::scoped_array<Sample> buf (new Sample[block_size]);
1735
1736         framepos_t pos = _start;
1737         framepos_t const end = _start + _length - 1;
1738
1739         AudioIntervalResult silent_periods;
1740
1741         bool in_silence = false;
1742         frameoffset_t silence_start = 0;
1743
1744         while (pos < end && !itt.cancel) {
1745
1746                 /* fill `loudest' with the loudest absolute sample at each instant, across all channels */
1747                 memset (loudest.get(), 0, sizeof (Sample) * block_size);
1748                 for (uint32_t n = 0; n < n_channels(); ++n) {
1749
1750                         read_raw_internal (buf.get(), pos, block_size, n);
1751                         for (framecnt_t i = 0; i < block_size; ++i) {
1752                                 loudest[i] = max (loudest[i], abs (buf[i]));
1753                         }
1754                 }
1755
1756                 /* now look for silence */
1757                 for (framecnt_t i = 0; i < block_size; ++i) {
1758                         bool const silence = abs (loudest[i]) < threshold;
1759                         if (silence && !in_silence) {
1760                                 /* non-silence to silence */
1761                                 in_silence = true;
1762                                 silence_start = pos + i;
1763                         } else if (!silence && in_silence) {
1764                                 /* silence to non-silence */
1765                                 in_silence = false;
1766                                 if (pos + i - 1 - silence_start >= min_length) {
1767                                         silent_periods.push_back (std::make_pair (silence_start, pos + i - 1));
1768                                 }
1769                         }
1770                 }
1771
1772                 pos += block_size;
1773                 itt.progress = (end-pos)/(double)_length;
1774         }
1775
1776         if (in_silence && end - 1 - silence_start >= min_length) {
1777                 /* last block was silent, so finish off the last period */
1778                 silent_periods.push_back (std::make_pair (silence_start, end));
1779         }
1780
1781         itt.done = true;
1782
1783         return silent_periods;
1784 }
1785
1786 Evoral::Range<framepos_t>
1787 AudioRegion::body_range () const
1788 {
1789         return Evoral::Range<framepos_t> (first_frame() + _fade_in->back()->when, last_frame() - _fade_out->back()->when);
1790 }
1791
1792 void
1793 AudioRegion::set_fade_in_is_xfade (bool yn)
1794 {
1795         _fade_in_is_xfade = yn;
1796 }
1797
1798 void
1799 AudioRegion::set_fade_out_is_xfade (bool yn)
1800 {
1801         _fade_out_is_xfade = yn;
1802 }
1803
1804 extern "C" {
1805
1806         int region_read_peaks_from_c (void *arg, uint32_t npeaks, uint32_t start, uint32_t cnt, intptr_t data, uint32_t n_chan, double samples_per_unit)
1807 {
1808         return ((AudioRegion *) arg)->read_peaks ((PeakData *) data, (framecnt_t) npeaks, (framepos_t) start, (framecnt_t) cnt, n_chan,samples_per_unit);
1809 }
1810
1811 uint32_t region_length_from_c (void *arg)
1812 {
1813
1814         return ((AudioRegion *) arg)->length();
1815 }
1816
1817 uint32_t sourcefile_length_from_c (void *arg, double zoom_factor)
1818 {
1819         return ( (AudioRegion *) arg)->audio_source()->available_peaks (zoom_factor) ;
1820 }
1821
1822 } /* extern "C" */