redesign technique for naming/creating regions for MIDI clone (or other non-capture...
[ardour.git] / libs / ardour / audio_diskstream.cc
index 77c14de10338f07396a5caf7de59b5c0f8742ea6..010e1da21f9092db29dbe2337ff495a48524398d 100644 (file)
@@ -925,7 +925,7 @@ AudioDiskstream::internal_playback_seek (framecnt_t distance)
        boost::shared_ptr<ChannelList> c = channels.reader();
 
        for (chan = c->begin(); chan != c->end(); ++chan) {
-               (*chan)->playback_buf->increment_read_ptr (llabs(distance));
+               (*chan)->playback_buf->increment_read_ptr (std::llabs(distance));
        }
 
        if (first_recordable_frame < max_framepos) {
@@ -1928,14 +1928,6 @@ AudioDiskstream::use_new_write_source (uint32_t n)
        return 0;
 }
 
-list<boost::shared_ptr<Source> >
-AudioDiskstream::steal_write_sources()
-{
-       /* not possible to steal audio write sources */
-       list<boost::shared_ptr<Source> > ret;
-       return ret;
-}
-
 void
 AudioDiskstream::reset_write_sources (bool mark_write_complete, bool /*force*/)
 {