X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Freverse.cc;h=06fafb0ca45c2ff97185c73f09f3afd0157a0b9a;hb=bb8cb93789b2eec65e4d82e5ceb64054673cbc4f;hp=eb68a09049c1e6194e0f4aacde8a450d71353c6b;hpb=93c7aeba048f19df5abee5e4325ef8b0ef62c279;p=ardour.git diff --git a/libs/ardour/reverse.cc b/libs/ardour/reverse.cc index eb68a09049..06fafb0ca4 100644 --- a/libs/ardour/reverse.cc +++ b/libs/ardour/reverse.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2004 Paul Davis + Copyright (C) 2004 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,26 +15,22 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #include -#include - -#include -#include -#include -#include -#include - -#include "i18n.h" +#include "ardour/audioregion.h" +#include "ardour/audiosource.h" +#include "ardour/reverse.h" +#include "ardour/types.h" using namespace std; using namespace ARDOUR; +namespace ARDOUR { class Progress; class Session; } + Reverse::Reverse (Session& s) - : AudioFilter (s) + : Filter (s) { } @@ -43,69 +39,72 @@ Reverse::~Reverse () } int -Reverse::run (boost::shared_ptr region) +Reverse::run (boost::shared_ptr r, Progress*) { SourceList nsrcs; SourceList::iterator si; - const nframes_t blocksize = 256 * 1048; - Sample buf[blocksize]; - nframes_t fpos; - nframes_t fend; - nframes_t fstart; - nframes_t to_read; + framecnt_t blocksize = 256 * 1024; + Sample* buf = 0; + framepos_t fpos; + framepos_t fstart; + framecnt_t to_read; int ret = -1; + boost::shared_ptr region = boost::dynamic_pointer_cast(r); + if (!region) + return ret; + /* create new sources */ if (make_new_sources (region, nsrcs)) { goto out; } - fend = region->start() + region->length(); fstart = region->start(); - if (blocksize < fend) { - fpos =max(fstart, fend - blocksize); - } else { - fpos = fstart; + if (blocksize > region->length()) { + blocksize = region->length(); } - to_read = min (region->length(), blocksize); + fpos = max (fstart, (fstart + region->length() - blocksize)); + + buf = new Sample[blocksize]; + to_read = blocksize; /* now read it backwards */ - while (1) { + while (to_read) { uint32_t n; for (n = 0, si = nsrcs.begin(); n < region->n_channels(); ++n, ++si) { - /* read it in */ - - if (region->source (n)->read (buf, fpos, to_read) != to_read) { + /* read it in directly from the source */ + + if (region->audio_source (n)->read (buf, fpos, to_read) != to_read) { goto out; } - + /* swap memory order */ - - for (nframes_t i = 0; i < to_read/2; ++i) { + + for (framecnt_t i = 0; i < to_read/2; ++i) { swap (buf[i],buf[to_read-1-i]); } - + /* write it out */ - if ((*si)->write (buf, to_read) != to_read) { + boost::shared_ptr asrc(boost::dynamic_pointer_cast(*si)); + + if (asrc && asrc->write (buf, to_read) != to_read) { goto out; } } - if (fpos == fstart) { - break; - } else if (fpos > fstart + to_read) { + if (fpos > fstart + blocksize) { fpos -= to_read; - to_read = min (fstart - fpos, blocksize); + to_read = blocksize; } else { - to_read = fpos-fstart; + to_read = fpos - fstart; fpos = fstart; } }; @@ -114,11 +113,14 @@ Reverse::run (boost::shared_ptr region) out: + delete [] buf; + if (ret) { for (si = nsrcs.begin(); si != nsrcs.end(); ++si) { - (*si)->mark_for_remove (); + boost::shared_ptr asrc(boost::dynamic_pointer_cast(*si)); + asrc->mark_for_remove (); } } - + return ret; }