Merging from trunk
[ardour.git] / libs / ardour / ardour / audioregion.h
1 /*
2     Copyright (C) 2000-2001 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/gain.h>
31 #include <ardour/region.h>
32 #include <ardour/export.h>
33
34 class XMLNode;
35
36 namespace ARDOUR {
37
38 class Route;
39 class Playlist;
40 class Session;
41 class AudioFilter;
42 class AudioSource;
43
44 struct AudioRegionState : public RegionState 
45 {
46     AudioRegionState (std::string why);
47
48     Curve _fade_in;
49     Curve _fade_out;
50     Curve _envelope;
51     gain_t _scale_amplitude;
52     uint32_t _fade_in_disabled;
53     uint32_t _fade_out_disabled;
54 };
55
56 class AudioRegion : public Region
57 {
58   public:
59         typedef vector<AudioSource *> SourceList;
60
61         static Change FadeInChanged;
62         static Change FadeOutChanged;
63         static Change FadeInActiveChanged;
64         static Change FadeOutActiveChanged;
65         static Change EnvelopeActiveChanged;
66         static Change ScaleAmplitudeChanged;
67         static Change EnvelopeChanged;
68
69         AudioRegion (AudioSource&, jack_nframes_t start, jack_nframes_t length, bool announce = true);
70         AudioRegion (AudioSource&, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true);
71         AudioRegion (SourceList &, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true);
72         AudioRegion (const AudioRegion&, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Region::Flag flags = Region::DefaultFlags, bool announce = true);
73         AudioRegion (const AudioRegion&);
74         AudioRegion (AudioSource&, const XMLNode&);
75         AudioRegion (SourceList &, const XMLNode&);
76         ~AudioRegion();
77
78         bool region_list_equivalent (const AudioRegion&) const ;
79         bool source_equivalent (const AudioRegion&) const;
80         bool equivalent (const AudioRegion&) const;
81         bool size_equivalent (const AudioRegion&) const;
82         bool overlap_equivalent (const AudioRegion&) const;
83
84         bool speed_mismatch (float) const;
85
86         void lock_sources ();
87         void unlock_sources ();
88         AudioSource& source (uint32_t n=0) const { if (n < sources.size()) return *sources[n]; else return *sources[0]; } 
89
90         void set_scale_amplitude (gain_t);
91         gain_t scale_amplitude() const { return _scale_amplitude; }
92         
93         void normalize_to (float target_in_dB = 0.0f);
94
95         uint32_t n_channels() { return sources.size(); }
96         vector<string> master_source_names();
97         
98         bool envelope_active () const { return _flags & Region::EnvelopeActive; }
99         bool fade_in_active () const { return _flags & Region::FadeIn; }
100         bool fade_out_active () const { return _flags & Region::FadeOut; }
101         bool captured() const { return !(_flags & (Region::Flag (Region::Import|Region::External))); }
102
103         Curve& fade_in()  { return _fade_in; }
104         Curve& fade_out() { return _fade_out; }
105         Curve& envelope() { return _envelope; }
106
107         jack_nframes_t read_peaks (PeakData *buf, jack_nframes_t npeaks, jack_nframes_t offset, jack_nframes_t cnt, uint32_t chan_n=0, double samples_per_unit= 1.0) const;
108
109         virtual jack_nframes_t read_at (Sample *buf, Sample *mixdown_buffer, 
110                                         float *gain_buffer, char * workbuf, jack_nframes_t position, jack_nframes_t cnt, 
111                                         uint32_t chan_n = 0,
112                                         jack_nframes_t read_frames = 0,
113                                         jack_nframes_t skip_frames = 0) const;
114
115         jack_nframes_t master_read_at (Sample *buf, Sample *mixdown_buffer, 
116                                        float *gain_buffer, char * workbuf, jack_nframes_t position, jack_nframes_t cnt, uint32_t chan_n=0) const;
117
118
119         XMLNode& state (bool);
120         XMLNode& get_state ();
121         int      set_state (const XMLNode&);
122
123         static void set_default_fade (float steepness, jack_nframes_t len);
124
125         enum FadeShape {
126                 Linear,
127                 Fast,
128                 Slow,
129                 LogA,
130                 LogB,
131
132         };
133
134         void set_fade_in_active (bool yn);
135         void set_fade_in_shape (FadeShape);
136         void set_fade_in_length (jack_nframes_t);
137         void set_fade_in (FadeShape, jack_nframes_t);
138
139         void set_fade_out_active (bool yn);
140         void set_fade_out_shape (FadeShape);
141         void set_fade_out_length (jack_nframes_t);
142         void set_fade_out (FadeShape, jack_nframes_t);
143
144         void set_envelope_active (bool yn);
145
146         int separate_by_channel (ARDOUR::Session&, vector<AudioRegion*>&) const;
147
148         uint32_t read_data_count() const { return _read_data_count; }
149
150         ARDOUR::Playlist* playlist() const { return _playlist; }
151
152         UndoAction get_memento() const;
153
154         /* filter */
155
156         int apply (AudioFilter&);
157
158         /* export */
159
160         int exportme (ARDOUR::Session&, ARDOUR::AudioExportSpecification&);
161
162         Region* get_parent();
163
164         /* xfade/fade interactions */
165
166         void suspend_fade_in ();
167         void suspend_fade_out ();
168         void resume_fade_in ();
169         void resume_fade_out ();
170
171   private:
172         friend class Playlist;
173
174   private:
175         SourceList        sources;
176         SourceList        master_sources; /* used when timefx are applied, so 
177                                              we can always use the original
178                                              source.
179                                           */
180         mutable Curve     _fade_in;
181         FadeShape         _fade_in_shape;
182         mutable Curve     _fade_out;
183         FadeShape         _fade_out_shape;
184         mutable Curve     _envelope;
185         gain_t            _scale_amplitude;
186         uint32_t          _fade_in_disabled;
187         uint32_t          _fade_out_disabled;
188
189         void set_default_fades ();
190         void set_default_fade_in ();
191         void set_default_fade_out ();
192         void set_default_envelope ();
193
194         StateManager::State* state_factory (std::string why) const;
195         Change restore_state (StateManager::State&);
196
197         void recompute_gain_at_end ();
198         void recompute_gain_at_start ();
199
200         bool copied() const { return _flags & Copied; }
201         void maybe_uncopy ();
202         void rename_after_first_edit ();
203
204         jack_nframes_t _read_at (const SourceList&, Sample *buf, Sample *mixdown_buffer, 
205                                  float *gain_buffer, char * workbuf, jack_nframes_t position, jack_nframes_t cnt, 
206                                  uint32_t chan_n = 0,
207                                  jack_nframes_t read_frames = 0,
208                                  jack_nframes_t skip_frames = 0) const;
209
210         bool verify_start (jack_nframes_t position);
211         bool verify_length (jack_nframes_t position);
212         bool verify_start_mutable (jack_nframes_t& start);
213         bool verify_start_and_length (jack_nframes_t start, jack_nframes_t length);
214         void recompute_at_start ();
215         void recompute_at_end ();
216
217         void envelope_changed (Change);
218
219         void source_deleted (Source*);
220 };
221
222 } /* namespace ARDOUR */
223
224 /* access from C objects */
225
226 extern "C" {
227         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);
228         uint32_t region_length_from_c (void *arg);
229         uint32_t sourcefile_length_from_c (void *arg, double);
230 }
231
232 #endif /* __ardour_audio_region_h__ */