1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2024 LoRd_MuldeR <MuldeR2@GMX.de>
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.
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 ///////////////////////////////////////////////////////////////////////////////
31 X264_FILE_TYPE_FILTERS
[] =
33 { "mkv", "Matroska Files" },
34 { "mp4", "MPEG-4 Part 14 Container" },
35 { "264", "AVC/H.264 Elementary Stream"},
36 { "hevc", "HEVC/H.265 Elementary Stream"},
45 static void initRecentlyUsed(RecentlyUsed
*recentlyUsed
);
46 static void loadRecentlyUsed(RecentlyUsed
*recentlyUsed
);
47 static void saveRecentlyUsed(RecentlyUsed
*recentlyUsed
);
50 QString
sourceDirectory(void) { return m_sourceDirectory
; }
51 QString
outputDirectory(void) { return m_outputDirectory
; }
52 int filterIndex(void) { return m_filterIndex
; }
53 int lastUpdateCheck(void) { return m_lastUpdateCheck
; }
56 void setSourceDirectory(const QString
&sourceDirectory
) { m_sourceDirectory
= sourceDirectory
; }
57 void setOutputDirectory(const QString
&outputDirectory
) { m_outputDirectory
= outputDirectory
; }
58 void setFilterIndex(const int filterIndex
) { m_filterIndex
= filterIndex
; }
59 void setLastUpdateCheck(const int updateCheck
) { m_lastUpdateCheck
= updateCheck
; }
62 QString m_sourceDirectory
;
63 QString m_outputDirectory
;
65 int m_lastUpdateCheck
;