1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/*
* Copyright (C) 2016-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PlatformFreebsd.h"
#include "utils/StringUtils.h"
#include "platform/freebsd/OptionalsReg.h"
#include "platform/linux/powermanagement/LinuxPowerSyscall.h"
// clang-format off
#if defined(HAS_GLES)
#if defined(HAVE_WAYLAND)
#include "windowing/wayland/WinSystemWaylandEGLContextGLES.h"
#endif
#if defined(HAVE_X11)
#include "windowing/X11/WinSystemX11GLESContext.h"
#endif
#if defined(HAVE_GBM)
#include "windowing/gbm/WinSystemGbmGLESContext.h"
#endif
#endif
#if defined(HAS_GL)
#if defined(HAVE_WAYLAND)
#include "windowing/wayland/WinSystemWaylandEGLContextGL.h"
#endif
#if defined(HAVE_X11)
#include "windowing/X11/WinSystemX11GLContext.h"
#endif
#if defined(HAVE_GBM)
#include "windowing/gbm/WinSystemGbmGLContext.h"
#endif
#endif
// clang-format on
#include <cstdlib>
CPlatform* CPlatform::CreateInstance()
{
return new CPlatformFreebsd();
}
bool CPlatformFreebsd::InitStageOne()
{
if (!CPlatformPosix::InitStageOne())
return false;
setenv("OS", "Linux", true); // for python scripts that check the OS
#if defined(HAS_GLES)
#if defined(HAVE_WAYLAND)
KODI::WINDOWING::WAYLAND::CWinSystemWaylandEGLContextGLES::Register();
#endif
#if defined(HAVE_X11)
KODI::WINDOWING::X11::CWinSystemX11GLESContext::Register();
#endif
#if defined(HAVE_GBM)
KODI::WINDOWING::GBM::CWinSystemGbmGLESContext::Register();
#endif
#endif
#if defined(HAS_GL)
#if defined(HAVE_WAYLAND)
KODI::WINDOWING::WAYLAND::CWinSystemWaylandEGLContextGL::Register();
#endif
#if defined(HAVE_X11)
KODI::WINDOWING::X11::CWinSystemX11GLContext::Register();
#endif
#if defined(HAVE_GBM)
KODI::WINDOWING::GBM::CWinSystemGbmGLContext::Register();
#endif
#endif
CLinuxPowerSyscall::Register();
std::string envSink;
if (getenv("KODI_AE_SINK"))
envSink = getenv("KODI_AE_SINK");
if (StringUtils::EqualsNoCase(envSink, "ALSA"))
{
OPTIONALS::ALSARegister();
}
else if (StringUtils::EqualsNoCase(envSink, "PULSE"))
{
OPTIONALS::PulseAudioRegister();
}
else if (StringUtils::EqualsNoCase(envSink, "OSS"))
{
OPTIONALS::OSSRegister();
}
else if (StringUtils::EqualsNoCase(envSink, "SNDIO"))
{
OPTIONALS::SndioRegister();
}
else if (StringUtils::EqualsNoCase(envSink, "ALSA+PULSE"))
{
OPTIONALS::ALSARegister();
OPTIONALS::PulseAudioRegister();
}
else
{
if (!OPTIONALS::PulseAudioRegister())
{
if (!OPTIONALS::ALSARegister())
{
if (!OPTIONALS::SndioRegister())
{
OPTIONALS::OSSRegister();
}
}
}
}
m_lirc.reset(OPTIONALS::LircRegister());
return true;
}
|