fix compose mess, and a number of 64 bit printf specs
[ardour.git] / libs / ardour / session_timefx.cc
1 /*
2     Copyright (C) 2003 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 #include <cerrno>
22 #include <stdexcept>
23
24 #include <pbd/basename.h>
25
26 #include <soundtouch/SoundTouch.h>
27
28 #include <ardour/session.h>
29 #include <ardour/audioregion.h>
30 #include <ardour/filesource.h>
31 #include <ardour/sndfilesource.h>
32
33 #include "i18n.h"
34
35 using namespace std;
36 using namespace ARDOUR;
37 using namespace soundtouch;
38
39 AudioRegion*
40 Session::tempoize_region (TimeStretchRequest& tsr)
41 {
42         AudioRegion::SourceList sources;
43         AudioRegion::SourceList::iterator it;
44         AudioRegion* r = 0;
45         SoundTouch st;
46         string region_name;
47         string ident = X_("-TIMEFX-");
48         float percentage;
49         jack_nframes_t total_frames;
50         jack_nframes_t done;
51
52         /* the soundtouch code wants a *tempo* change percentage, which is 
53            of opposite sign to the length change.  
54         */
55
56         percentage = -tsr.fraction;
57
58         st.setSampleRate (frame_rate());
59         st.setChannels (1);
60         st.setTempoChange (percentage);
61         st.setPitchSemiTones (0);
62         st.setRateChange (0);
63         
64         st.setSetting(SETTING_USE_QUICKSEEK, tsr.quick_seek);
65         st.setSetting(SETTING_USE_AA_FILTER, tsr.antialias);
66
67         vector<string> names = tsr.region->master_source_names();
68
69         tsr.progress = 0.0f;
70         total_frames = tsr.region->length() * tsr.region->n_channels();
71         done = 0;
72
73         for (uint32_t i = 0; i < tsr.region->n_channels(); ++i) {
74                 string path = path_from_region_name (PBD::basename_nosuffix (names[i]), ident);
75
76                 if (path.length() == 0) {
77                         error << string_compose (_("tempoize: error creating name for new audio file based on %1"), tsr.region->name()) 
78                               << endmsg;
79                         goto out;
80                 }
81
82                 try {
83                         sources.push_back(new FileSource (path, frame_rate()));
84                 } catch (failed_constructor& err) {
85                         error << string_compose (_("tempoize: error creating new audio file %1 (%2)"), path, strerror (errno)) << endmsg;
86                         goto out;
87                 }
88         }
89         
90         try {
91                 const jack_nframes_t bufsize = 16384;
92
93                 for (uint32_t i = 0; i < sources.size(); ++i) {
94                         gain_t gain_buffer[bufsize];
95                         Sample buffer[bufsize];
96                         jack_nframes_t pos = 0;
97                         jack_nframes_t this_read = 0;
98
99                         st.clear();
100                         while (tsr.running && pos < tsr.region->length()) {
101                                 jack_nframes_t this_time;
102                         
103                                 this_time = min (bufsize, tsr.region->length() - pos);
104
105                                 /* read from the master (original) sources for the region, 
106                                    not the ones currently in use, in case it's already been 
107                                    subject to timefx.  */
108
109                                 if ((this_read = tsr.region->master_read_at (buffer, buffer, gain_buffer, pos + tsr.region->position(), this_time)) != this_time) {
110                                         error << string_compose (_("tempoize: error reading data from %1"), sources[i]->name()) << endmsg;
111                                         goto out;
112                                 }
113                         
114                                 pos += this_read;
115                                 done += this_read;
116
117                                 tsr.progress = (float) done / total_frames;
118                                 
119                                 st.putSamples (buffer, this_read);
120                         
121                                 while ((this_read = st.receiveSamples (buffer, bufsize)) > 0 && tsr.running) {
122                                         if (sources[i]->write (buffer, this_read) != this_read) {
123                                                 error << string_compose (_("error writing tempo-adjusted data to %1"), sources[i]->name()) << endmsg;
124                                                 goto out;
125                                         }
126                                 }
127                         }
128                 
129                         if (tsr.running) {
130                                 st.flush ();
131                         }
132                 
133                         while (tsr.running && (this_read = st.receiveSamples (buffer, bufsize)) > 0) {
134                                 if (sources[i]->write (buffer, this_read) != this_read) {
135                                         error << string_compose (_("error writing tempo-adjusted data to %1"), sources[i]->name()) << endmsg;
136                                         goto out;
137                                 }
138                         }
139                 }
140         } catch (runtime_error& err) {
141                 error << _("timefx code failure. please notify ardour-developers.") << endmsg;
142                 error << err.what() << endmsg;
143                 goto out;
144         }
145
146         time_t now;
147         struct tm* xnow;
148         time (&now);
149         xnow = localtime (&now);
150
151         for (it = sources.begin(); it != sources.end(); ++it) {
152                 dynamic_cast<FileSource*>(*it)->update_header (0, *xnow, now);
153         }
154
155         region_name = tsr.region->name() + X_(".t");
156
157         r = new AudioRegion (sources, 0, sources.front()->length(), region_name,
158                         0, AudioRegion::Flag (AudioRegion::DefaultFlags | AudioRegion::WholeFile));
159
160
161   out:
162
163         if (sources.size()) {
164
165                 /* if we failed to complete for any reason, mark the new file 
166                    for deletion.
167                 */
168
169                 if ((r == 0 || !tsr.running)) {
170                         for (it = sources.begin(); it != sources.end(); ++it) {
171                                 (*it)->mark_for_remove ();
172                                 delete *it;
173                         }
174                 }
175         }
176         
177         /* if the process was cancelled, delete the region */
178
179         if (!tsr.running) {
180                 if (r) {
181                         delete r;
182                         r = 0;
183                 } 
184         }
185         
186         return r;
187 }