/*** Olive - Non-Linear Video Editor Copyright (C) 2022 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 . ***/ #ifndef NODEGLOBALS_H #define NODEGLOBALS_H #include #include "common/timerange.h" #include "render/audioparams.h" #include "render/videoparams.h" namespace olive { class NodeGlobals { public: NodeGlobals(){} NodeGlobals(const VideoParams &vparam, const AudioParams &aparam, const TimeRange &time) : video_params_(vparam), audio_params_(aparam), time_(time) { } QVector2D square_resolution() const { return video_params_.square_resolution(); } QVector2D nonsquare_resolution() const { return video_params_.resolution(); } const AudioParams &aparams() const { return audio_params_; } const VideoParams &vparams() const { return video_params_; } const TimeRange &time() const { return time_; } private: VideoParams video_params_; AudioParams audio_params_; TimeRange time_; }; } #endif // NODEGLOBALS_H