2020-04-20 10:07:37 +01:00
|
|
|
/*
|
2021-10-04 20:59:10 +01:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-04-20 10:07:37 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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/>.
|
|
|
|
*/
|
2020-04-20 12:37:08 +01:00
|
|
|
#include <stratosphere.hpp>
|
2021-10-08 01:44:54 +01:00
|
|
|
#include "jpegdec_memory_management.hpp"
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace ams {
|
2021-01-18 14:35:14 +00:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
namespace init {
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void InitializeSystemModule() {
|
|
|
|
/* Initialize heap. */
|
|
|
|
jpegdec::InitializeJpegHeap();
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Initialize our connection to sm. */
|
|
|
|
R_ABORT_UNLESS(sm::Initialize());
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Verify that we can sanely execute. */
|
|
|
|
ams::CheckApiVersion();
|
|
|
|
}
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void FinalizeSystemModule() { /* ... */ }
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Startup() { /* ... */ }
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
}
|
2021-10-07 07:22:54 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
void Main() {
|
|
|
|
/* Set thread name. */
|
|
|
|
os::SetThreadNamePointer(os::GetCurrentThread(), AMS_GET_SYSTEM_THREAD_NAME(jpegdec, Main));
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Official jpegdec changes its thread priority to 21 in main. */
|
|
|
|
/* This is because older versions of the sysmodule had priority 20 in npdm. */
|
|
|
|
os::ChangeThreadPriority(os::GetCurrentThread(), AMS_GET_SYSTEM_THREAD_PRIORITY(jpegdec, Main));
|
|
|
|
AMS_ASSERT(os::GetThreadPriority(os::GetCurrentThread()) == AMS_GET_SYSTEM_THREAD_PRIORITY(jpegdec, Main));
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Initialize the capsrv library. */
|
|
|
|
R_ABORT_UNLESS(capsrv::server::InitializeForDecoderServer());
|
2020-04-20 12:37:08 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Service the decoder server. */
|
|
|
|
capsrv::server::DecoderControlServerThreadFunction(nullptr);
|
2020-04-20 10:07:37 +01:00
|
|
|
|
2021-10-08 01:44:54 +01:00
|
|
|
/* Finalize the capsrv library. */
|
|
|
|
capsrv::server::FinalizeForDecoderServer();
|
|
|
|
}
|
2020-04-20 10:07:37 +01:00
|
|
|
|
|
|
|
}
|