nothing to do anymore at the Track level when input config changes

This commit is contained in:
Paul Davis 2017-04-10 15:58:28 +01:00
parent 0c9a48550f
commit 480ebd2c55
4 changed files with 0 additions and 20 deletions

View file

@ -159,7 +159,6 @@ class LIBARDOUR_API Track : public Route, public Recordable
bool hidden () const;
int can_internal_playback_seek (framecnt_t);
int internal_playback_seek (framecnt_t);
void non_realtime_input_change ();
void non_realtime_locate (framepos_t);
void non_realtime_set_speed ();
int overwrite_existing_buffers ();

View file

@ -2635,8 +2635,6 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s
}
}
track->non_realtime_input_change();
if (route_group) {
route_group->add (track);
}
@ -3240,8 +3238,6 @@ Session::new_audio_track (int input_channels, int output_channels, RouteGroup* r
route_group->add (track);
}
track->non_realtime_input_change();
new_routes.push_back (track);
ret.push_back (track);
}

View file

@ -475,15 +475,6 @@ Session::butler_transport_work ()
}
}
if (ptw & PostTransportInputChange) {
for (RouteList::iterator i = r->begin(); i != r->end(); ++i) {
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
if (tr) {
tr->non_realtime_input_change ();
}
}
}
if (ptw & PostTransportSpeed) {
non_realtime_set_speed ();
}

View file

@ -1117,9 +1117,3 @@ Track::metering_state () const
}
return rv ? MeteringInput : MeteringRoute;
}
void
Track::non_realtime_input_change ()
{
// XXX DISK do we need to do anything here anymore ?
}