add JAG to author list
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index 8ee0ac1f908ecd961ffb31978fce06b714657c8a..776832143628bf879b570275f82bcc2c2c88fdb6 100644 (file)
@@ -149,7 +149,12 @@ Editor::bounce_region_selection ()
                itt.cancel = false;
                itt.progress = 0.0f;
 
-               track->bounce_range (region->position(), region->position() + region->length(), itt);
+               boost::shared_ptr<Region> r = track->bounce_range (region->position(), region->position() + region->length(), itt);
+               cerr << "Result of bounce of "
+                    << region->name() << " len = " << region->length()
+                    << " was "
+                    << r->name() << " len = " << r->length()
+                    << endl;
        }
 }