Bump version + updated changelog.
[simple-x264-launcher.git] / src / model_clipInfo.cpp
blobc1d6f7c3d555cc8f3cea4648dc0a4693a3ffb65f
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2018 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 #include "model_clipInfo.h"
26 #include <QPair>
28 ClipInfo::ClipInfo(const quint32 &count, const quint32 &width, const quint32 &height, const quint32 &numerator, const quint32 &denominator)
30 m_frameCount = count;
31 m_frameSize_wid = width;
32 m_frameSize_hei = height;
33 m_frameRate_num = numerator;
34 m_frameRate_den = denominator;
37 void ClipInfo::reset(void)
39 m_frameCount = m_frameSize_wid = m_frameSize_hei = m_frameRate_num = m_frameRate_den = 0;
42 const quint32 &ClipInfo::getFrameCount(void) const
44 return m_frameCount;
47 QPair<quint32, quint32> ClipInfo::getFrameSize(void) const
49 return qMakePair(m_frameSize_wid, m_frameSize_hei);
52 QPair<quint32, quint32> ClipInfo::getFrameRate(void) const
54 return qMakePair(m_frameRate_num, m_frameRate_den);
57 void ClipInfo::setFrameCount(const quint32 &count)
59 m_frameCount = count;
62 void ClipInfo::setFrameSize(const quint32 &width, const quint32 &height)
64 m_frameSize_wid = width;
65 m_frameSize_hei = height;
68 void ClipInfo::setFrameRate(const quint32 &numerator, const quint32 &denominator)
70 m_frameRate_num = numerator;
71 m_frameRate_den = denominator;