refactor jpegdec implementation into libstrat (thanks again, Behemoth!)
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
/* At this point, just include the rest alphabetically. */
|
||||
/* TODO: Figure out optimal order. */
|
||||
#include <stratosphere/boot2.hpp>
|
||||
#include <stratosphere/capsrv.hpp>
|
||||
#include <stratosphere/cfg.hpp>
|
||||
#include <stratosphere/dmnt.hpp>
|
||||
#include <stratosphere/erpt.hpp>
|
||||
|
||||
21
libraries/libstratosphere/include/stratosphere/capsrv.hpp
Normal file
21
libraries/libstratosphere/include/stratosphere/capsrv.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2020 Atmosphère-NX
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stratosphere/capsrv/capsrv_screen_shot_decode_option.hpp>
|
||||
#include <stratosphere/capsrv/server/capsrv_server_config.hpp>
|
||||
#include <stratosphere/capsrv/server/capsrv_server_decoder_api.hpp>
|
||||
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2020 Atmosphère-NX
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <vapours.hpp>
|
||||
|
||||
namespace ams::capsrv {
|
||||
|
||||
enum ScreenShotDecoderFlag : u64 {
|
||||
ScreenShotDecoderFlag_None = (0 << 0),
|
||||
ScreenShotDecoderFlag_EnableFancyUpsampling = (1 << 0),
|
||||
ScreenShotDecoderFlag_EnableBlockSmoothing = (1 << 1),
|
||||
};
|
||||
|
||||
using ScreenShotJpegDecoderFlagType = typename std::underlying_type<ScreenShotDecoderFlag>::type;
|
||||
|
||||
struct ScreenShotDecodeOption {
|
||||
ScreenShotJpegDecoderFlagType flags;
|
||||
u8 reserved[0x20 - sizeof(ScreenShotJpegDecoderFlagType)];
|
||||
|
||||
static constexpr ScreenShotDecodeOption GetDefaultOption() {
|
||||
return ScreenShotDecodeOption{};
|
||||
}
|
||||
|
||||
constexpr bool HasJpegDecoderFlag(ScreenShotJpegDecoderFlagType flag) const {
|
||||
return (this->flags & flag) != 0;
|
||||
}
|
||||
};
|
||||
static_assert(sizeof(ScreenShotDecodeOption) == 0x20);
|
||||
static_assert(sizeof(ScreenShotDecodeOption) == sizeof(::CapsScreenShotDecodeOption));
|
||||
static_assert(std::is_pod<ScreenShotDecodeOption>::value);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2020 Atmosphère-NX
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <vapours.hpp>
|
||||
|
||||
namespace ams::capsrv::server {
|
||||
|
||||
constexpr inline int ScreenShotWidth = 1280;
|
||||
constexpr inline int ScreenShotHeight = 720;
|
||||
|
||||
constexpr inline int MovieWidth = 1280;
|
||||
constexpr inline int MovieHeight = 720;
|
||||
|
||||
constexpr inline size_t SoftwareJpegDecoderWorkMemorySize = 16_KB;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2020 Atmosphère-NX
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <vapours.hpp>
|
||||
|
||||
namespace ams::capsrv::server {
|
||||
|
||||
Result InitializeForDecoderServer();
|
||||
void FinalizeForDecoderServer();
|
||||
|
||||
void DecoderControlServerThreadFunction(void *);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user