MediaInput: Rename streams access methods.

Change MediaInput::footage() to MediaInput::stream() and
MediaInput::SetFootage() to MediaInput::SetStream() as they access
streams not footage.

Also update all instances of access methods to reflect this change.
This commit is contained in:
Thomas Wilshaw
2020-10-19 15:50:36 +01:00
parent 56acbfd06c
commit 4ddc659335
7 changed files with 16 additions and 16 deletions
@@ -554,7 +554,7 @@ QList<MediaInput *> ProjectExplorer::GetMediaNodesUsingFootage(Footage *item)
if (n->IsMedia()) {
MediaInput* media_node = static_cast<MediaInput*>(n);
if (media_node->footage()->footage() == item) {
if (media_node->stream()->footage() == item) {
list.append(media_node);
}
}