removed another unnecessary node function

This commit is contained in:
itsmattkc
2019-11-02 18:12:54 +11:00
parent 16ac2fc0e1
commit 788502cd11
8 changed files with 27 additions and 72 deletions
-15
View File
@@ -122,21 +122,6 @@ void TrackOutput::SetIndex(const int &index)
index_ = index;
}
QList<NodeDependency> TrackOutput::RunDependencies(NodeOutput* output, const rational &time)
{
QList<NodeDependency> deps;
if (output == buffer_output()) {
ValidateCurrentBlock(time);
if (current_block_ != this) {
deps.append(NodeDependency(current_block_->buffer_output(), time, time));
}
}
return deps;
}
TrackOutput *TrackOutput::next_track()
{
return ValueToPtr<TrackOutput>(track_input_->get_realtime_value_of_connected_output());