The GLSL shaders are written in GLSL 1.10 even though the OpenGL standard is set to OpenGL ES 3.2 Core. Many platforms allow this but some platforms don't. For standards compliance, it's probably a good idea in the future to upgrade the shaders to 3.2, but for now we'll use 3.2 Compatibility which will allow the GLSL 1.10 shaders to compile.
102 lines
3.0 KiB
C++
102 lines
3.0 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/>.
|
|
|
|
***/
|
|
|
|
/** \mainpage Olive Video Editor - Code Documentation
|
|
*
|
|
* This documentation is a primarily a developer resource. For information on using Olive, visit the website
|
|
* https://www.olivevideoeditor.org/
|
|
*
|
|
* Use the navigation above to find documentation on classes or source files.
|
|
*/
|
|
|
|
extern "C" {
|
|
#include <libavformat/avformat.h>
|
|
#include <libavfilter/avfilter.h>
|
|
}
|
|
|
|
#include <csignal>
|
|
#include <QApplication>
|
|
#include <QSurfaceFormat>
|
|
|
|
#include "core.h"
|
|
#include "common/crashhandler.h"
|
|
#include "common/debug.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
signal(SIGSEGV, OLIVE_NAMESPACE::crash_handler);
|
|
signal(SIGABRT, OLIVE_NAMESPACE::crash_handler);
|
|
|
|
// Set OpenGL display profile (3.2 Core)
|
|
QSurfaceFormat format;
|
|
format.setVersion(3, 2);
|
|
format.setDepthBufferSize(24);
|
|
format.setProfile(QSurfaceFormat::CompatibilityProfile);
|
|
QSurfaceFormat::setDefaultFormat(format);
|
|
|
|
// Try to share OpenGL contexts
|
|
QApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
|
|
|
|
// Create application instance
|
|
QApplication a(argc, argv);
|
|
|
|
// Set application metadata
|
|
QCoreApplication::setOrganizationName("olivevideoeditor.org");
|
|
QCoreApplication::setOrganizationDomain("olivevideoeditor.org");
|
|
QCoreApplication::setApplicationName("Olive");
|
|
|
|
QString app_version = APPVERSION;
|
|
#ifdef GITHASH
|
|
// Anything after the hyphen is considered "unimportant" information. Text BEFORE the hyphen is used in version
|
|
// checking project files and config files
|
|
app_version.append("-");
|
|
app_version.append(GITHASH);
|
|
#endif
|
|
|
|
qInfo() << "Using Qt version:" << qVersion();
|
|
|
|
QCoreApplication::setApplicationVersion(app_version);
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 7, 0))
|
|
QGuiApplication::setDesktopFileName("org.olivevideoeditor.Olive");
|
|
#endif
|
|
|
|
// Set up debug handler
|
|
qInstallMessageHandler(OLIVE_NAMESPACE::DebugHandler);
|
|
|
|
// Register FFmpeg codecs and filters (deprecated in 4.0+)
|
|
#if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(58, 9, 100)
|
|
av_register_all();
|
|
#endif
|
|
#if LIBAVFILTER_VERSION_INT < AV_VERSION_INT(7, 14, 100)
|
|
avfilter_register_all();
|
|
#endif
|
|
|
|
// Start core
|
|
OLIVE_NAMESPACE::Core::instance()->Start();
|
|
|
|
// Run application loop and receive exit code
|
|
int exit_code = a.exec();
|
|
|
|
// Clear core memory
|
|
OLIVE_NAMESPACE::Core::instance()->Stop();
|
|
|
|
return exit_code;
|
|
}
|