Merged with trunk R920.
[ardour.git] / libs / ardour / ardour / audioregion.h
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     $Id$
19 */
20
21 #ifndef __ardour_audio_region_h__
22 #define __ardour_audio_region_h__
23
24 #include <vector>
25
26 #include <pbd/fastlog.h>
27 #include <pbd/undo.h>
28
29 #include <ardour/ardour.h>
30 #include <ardour/region.h>
31 #include <ardour/gain.h>
32 #include <ardour/logcurve.h>
33 #include <ardour/export.h>
34
35 class XMLNode;
36
37 namespace ARDOUR {
38
39 class Route;
40 class Playlist;
41 class Session;
42 class AudioFilter;
43 class AudioSource;
44
45 struct AudioRegionState : public RegionState 
46 {
47         AudioRegionState (std::string why);
48
49         Curve    _fade_in;
50         Curve    _fade_out;
51         Curve    _envelope;
52         gain_t   _scale_amplitude;
53         uint32_t _fade_in_disabled;
54         uint32_t _fade_out_disabled;
55 };
56
57 class AudioRegion : public Region
58 {
59   public:
60         static Change FadeInChanged;
61         static Change FadeOutChanged;
62         static Change FadeInActiveChanged;
63         static Change FadeOutActiveChanged;
64         static Change EnvelopeActiveChanged;
65         static Change ScaleAmplitudeChanged;
66         static Change EnvelopeChanged;
67
68         ~AudioRegion();
69
70         bool speed_mismatch (float) const;
71
72         boost::shared_ptr<AudioSource> audio_source (uint32_t n=0) const;
73
74         void   set_scale_amplitude (gain_t);
75         gain_t scale_amplitude() const { return _scale_amplitude; }
76         
77         void normalize_to (float target_in_dB = 0.0f);
78
79         bool envelope_active () const { return _flags & Region::EnvelopeActive; }
80         bool fade_in_active ()  const { return _flags & Region::FadeIn; }
81         bool fade_out_active () const { return _flags & Region::FadeOut; }
82
83         Curve& fade_in()  { return _fade_in; }
84         Curve& fade_out() { return _fade_out; }
85         Curve& envelope() { return _envelope; }
86
87         jack_nframes_t read_peaks (PeakData *buf, jack_nframes_t npeaks,
88                         jack_nframes_t offset, jack_nframes_t cnt,
89                         uint32_t chan_n=0, double samples_per_unit= 1.0) const;
90
91         virtual jack_nframes_t read_at (Sample *buf, Sample *mixdown_buf,
92                         float *gain_buf, jack_nframes_t position, jack_nframes_t cnt, 
93                         uint32_t       chan_n      = 0,
94                         jack_nframes_t read_frames = 0,
95                         jack_nframes_t skip_frames = 0) const;
96
97         jack_nframes_t master_read_at (Sample *buf, Sample *mixdown_buf, float *gain_buf,
98                         jack_nframes_t position, jack_nframes_t cnt, uint32_t chan_n=0) const;
99
100         XMLNode& state (bool);
101         int      set_state (const XMLNode&);
102
103         static void set_default_fade (float steepness, jack_nframes_t len);
104
105         enum FadeShape {
106                 Linear,
107                 Fast,
108                 Slow,
109                 LogA,
110                 LogB
111         };
112
113         void set_fade_in_active (bool yn);
114         void set_fade_in_shape (FadeShape);
115         void set_fade_in_length (jack_nframes_t);
116         void set_fade_in (FadeShape, jack_nframes_t);
117
118         void set_fade_out_active (bool yn);
119         void set_fade_out_shape (FadeShape);
120         void set_fade_out_length (jack_nframes_t);
121         void set_fade_out (FadeShape, jack_nframes_t);
122
123         void set_envelope_active (bool yn);
124
125         int separate_by_channel (ARDOUR::Session&, vector<AudioRegion*>&) const;
126
127         UndoAction get_memento() const;
128
129         /* filter */
130
131         int apply (AudioFilter&);
132
133         /* export */
134
135         int exportme (ARDOUR::Session&, ARDOUR::AudioExportSpecification&);
136
137         /* xfade/fade interactions */
138
139         void suspend_fade_in ();
140         void suspend_fade_out ();
141         void resume_fade_in ();
142         void resume_fade_out ();
143
144   private:
145         friend class RegionFactory;
146
147         AudioRegion (boost::shared_ptr<AudioSource>, jack_nframes_t start, jack_nframes_t length);
148         AudioRegion (boost::shared_ptr<AudioSource>, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
149         AudioRegion (SourceList &, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
150         AudioRegion (boost::shared_ptr<const AudioRegion>, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags);
151         AudioRegion (boost::shared_ptr<const AudioRegion>);
152         AudioRegion (boost::shared_ptr<AudioSource>, const XMLNode&);
153         AudioRegion (SourceList &, const XMLNode&);
154
155   private:
156         void set_default_fades ();
157         void set_default_fade_in ();
158         void set_default_fade_out ();
159         void set_default_envelope ();
160
161         StateManager::State* state_factory (std::string why) const;
162         Change restore_state (StateManager::State&);
163
164         void recompute_gain_at_end ();
165         void recompute_gain_at_start ();
166
167         jack_nframes_t _read_at (const SourceList&, Sample *buf, Sample *mixdown_buffer, 
168                                  float *gain_buffer, jack_nframes_t position, jack_nframes_t cnt, 
169                                  uint32_t chan_n = 0,
170                                  jack_nframes_t read_frames = 0,
171                                  jack_nframes_t skip_frames = 0) const;
172
173         void recompute_at_start ();
174         void recompute_at_end ();
175
176         void envelope_changed (Change);
177         void source_offset_changed ();
178
179         mutable Curve     _fade_in;
180         FadeShape         _fade_in_shape;
181         mutable Curve     _fade_out;
182         FadeShape         _fade_out_shape;
183         mutable Curve     _envelope;
184         gain_t            _scale_amplitude;
185         uint32_t          _fade_in_disabled;
186         uint32_t          _fade_out_disabled;
187 };
188
189 } /* namespace ARDOUR */
190
191 /* access from C objects */
192
193 extern "C" {
194         int    region_read_peaks_from_c   (void *arg, uint32_t npeaks, uint32_t start, uint32_t length, intptr_t data, uint32_t n_chan, double samples_per_unit);
195         uint32_t region_length_from_c (void *arg);
196         uint32_t sourcefile_length_from_c (void *arg, double);
197 }
198
199 #endif /* __ardour_audio_region_h__ */