Files
oak-editor/app/node/output/viewer/viewer.cpp
T
itsmattkc 4d96ac9e39 don't police data type connections between nodes
Nodes were previously written to be "strongly typed" in that a parameter's
"type" enforced whether it could be connected to another. All code related
to that has now been removed since not only is it hard to maintain and
likely unnecessary, it's possible the nodes will work differently later on
anyway.
2019-10-25 00:44:14 +11:00

128 lines
2.9 KiB
C++

/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#include "viewer.h"
ViewerOutput::ViewerOutput()
{
texture_input_ = new NodeInput("tex_in");
texture_input_->set_data_type(NodeInput::kTexture);
AddParameter(texture_input_);
samples_input_ = new NodeInput("samples_in");
samples_input_->set_data_type(NodeInput::kSamples);
AddParameter(samples_input_);
length_input_ = new NodeInput("length_in");
length_input_->set_data_type(NodeInput::kRational);
AddParameter(length_input_);
}
QString ViewerOutput::Name()
{
return tr("Viewer");
}
QString ViewerOutput::id()
{
return "org.olivevideoeditor.Olive.vieweroutput";
}
QString ViewerOutput::Category()
{
return tr("Output");
}
QString ViewerOutput::Description()
{
return tr("Interface between a Viewer panel and the node system.");
}
NodeInput *ViewerOutput::texture_input()
{
return texture_input_;
}
NodeInput *ViewerOutput::samples_input()
{
return samples_input_;
}
NodeInput *ViewerOutput::length_input()
{
return length_input_;
}
RenderTexturePtr ViewerOutput::GetTexture(const rational &time)
{
return texture_input_->get_value(time).value<RenderTexturePtr>();
}
QByteArray ViewerOutput::GetSamples(const rational &in, const rational &out)
{
return samples_input_->get_value(in, out).toByteArray();
}
void ViewerOutput::InvalidateCache(const rational &start_range, const rational &end_range, NodeInput *from)
{
Node::InvalidateCache(start_range, end_range, from);
emit TextureChangedBetween(start_range, end_range);
SendInvalidateCache(start_range, end_range);
}
const VideoParams &ViewerOutput::video_params()
{
return video_params_;
}
const AudioParams &ViewerOutput::audio_params()
{
return audio_params_;
}
void ViewerOutput::set_video_params(const VideoParams &video)
{
video_params_ = video;
emit SizeChanged(video_params_.width(), video_params_.height());
emit TimebaseChanged(video_params_.time_base());
}
void ViewerOutput::set_audio_params(const AudioParams &audio)
{
audio_params_ = audio;
}
rational ViewerOutput::Length()
{
return length_input_->get_value(0).value<rational>();
}
QVariant ViewerOutput::Value(NodeOutput *output, const rational &in, const rational &out)
{
Q_UNUSED(output)
Q_UNUSED(in)
Q_UNUSED(out)
return 0;
}