2018-06-25 13:44:17 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-10-11 02:06:56 +00:00
|
|
|
#include <chrono>
|
2018-07-30 22:42:20 +00:00
|
|
|
#include <cstring>
|
2018-09-12 01:45:20 +00:00
|
|
|
#include <memory>
|
2018-10-11 02:06:56 +00:00
|
|
|
#include <optional>
|
2018-09-12 01:45:20 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-07-30 22:42:20 +00:00
|
|
|
#include <opus.h>
|
2018-09-12 01:45:20 +00:00
|
|
|
|
|
|
|
#include "common/common_funcs.h"
|
2018-06-25 13:44:17 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
|
|
|
#include "core/hle/service/audio/hwopus.h"
|
|
|
|
|
|
|
|
namespace Service::Audio {
|
|
|
|
|
2018-07-30 22:42:20 +00:00
|
|
|
struct OpusDeleter {
|
|
|
|
void operator()(void* ptr) const {
|
|
|
|
operator delete(ptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class IHardwareOpusDecoderManager final : public ServiceFramework<IHardwareOpusDecoderManager> {
|
|
|
|
public:
|
|
|
|
IHardwareOpusDecoderManager(std::unique_ptr<OpusDecoder, OpusDeleter> decoder, u32 sample_rate,
|
|
|
|
u32 channel_count)
|
|
|
|
: ServiceFramework("IHardwareOpusDecoderManager"), decoder(std::move(decoder)),
|
|
|
|
sample_rate(sample_rate), channel_count(channel_count) {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &IHardwareOpusDecoderManager::DecodeInterleaved, "DecodeInterleaved"},
|
|
|
|
{1, nullptr, "SetContext"},
|
|
|
|
{2, nullptr, "DecodeInterleavedForMultiStream"},
|
|
|
|
{3, nullptr, "SetContextForMultiStream"},
|
2018-10-11 02:06:56 +00:00
|
|
|
{4, &IHardwareOpusDecoderManager::DecodeInterleavedWithPerformance,
|
|
|
|
"DecodeInterleavedWithPerformance"},
|
2018-07-30 22:42:20 +00:00
|
|
|
{5, nullptr, "Unknown5"},
|
|
|
|
{6, nullptr, "Unknown6"},
|
|
|
|
{7, nullptr, "Unknown7"},
|
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void DecodeInterleaved(Kernel::HLERequestContext& ctx) {
|
|
|
|
u32 consumed = 0;
|
|
|
|
u32 sample_count = 0;
|
|
|
|
std::vector<opus_int16> samples(ctx.GetWriteBufferSize() / sizeof(opus_int16));
|
|
|
|
if (!Decoder_DecodeInterleaved(consumed, sample_count, ctx.ReadBuffer(), samples)) {
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
// TODO(ogniK): Use correct error code
|
|
|
|
rb.Push(ResultCode(-1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
IPC::ResponseBuilder rb{ctx, 4};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(consumed);
|
|
|
|
rb.Push<u32>(sample_count);
|
|
|
|
ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16));
|
|
|
|
}
|
|
|
|
|
2018-10-11 02:06:56 +00:00
|
|
|
void DecodeInterleavedWithPerformance(Kernel::HLERequestContext& ctx) {
|
|
|
|
u32 consumed = 0;
|
|
|
|
u32 sample_count = 0;
|
|
|
|
u64 performance = 0;
|
|
|
|
std::vector<opus_int16> samples(ctx.GetWriteBufferSize() / sizeof(opus_int16));
|
|
|
|
if (!Decoder_DecodeInterleaved(consumed, sample_count, ctx.ReadBuffer(), samples,
|
|
|
|
performance)) {
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
// TODO(ogniK): Use correct error code
|
|
|
|
rb.Push(ResultCode(-1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
IPC::ResponseBuilder rb{ctx, 6};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push<u32>(consumed);
|
|
|
|
rb.Push<u32>(sample_count);
|
2018-11-17 03:54:38 +00:00
|
|
|
rb.Push<u64>(performance);
|
2018-10-11 02:06:56 +00:00
|
|
|
ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Decoder_DecodeInterleaved(
|
|
|
|
u32& consumed, u32& sample_count, const std::vector<u8>& input,
|
|
|
|
std::vector<opus_int16>& output,
|
|
|
|
std::optional<std::reference_wrapper<u64>> performance_time = std::nullopt) {
|
|
|
|
const auto start_time = std::chrono::high_resolution_clock::now();
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t raw_output_sz = output.size() * sizeof(opus_int16);
|
2018-07-30 22:42:20 +00:00
|
|
|
if (sizeof(OpusHeader) > input.size())
|
|
|
|
return false;
|
|
|
|
OpusHeader hdr{};
|
|
|
|
std::memcpy(&hdr, input.data(), sizeof(OpusHeader));
|
|
|
|
if (sizeof(OpusHeader) + static_cast<u32>(hdr.sz) > input.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto frame = input.data() + sizeof(OpusHeader);
|
|
|
|
auto decoded_sample_count = opus_packet_get_nb_samples(
|
|
|
|
frame, static_cast<opus_int32>(input.size() - sizeof(OpusHeader)),
|
|
|
|
static_cast<opus_int32>(sample_rate));
|
|
|
|
if (decoded_sample_count * channel_count * sizeof(u16) > raw_output_sz)
|
|
|
|
return false;
|
|
|
|
auto out_sample_count =
|
|
|
|
opus_decode(decoder.get(), frame, hdr.sz, output.data(),
|
|
|
|
(static_cast<int>(raw_output_sz / sizeof(s16) / channel_count)), 0);
|
|
|
|
if (out_sample_count < 0)
|
|
|
|
return false;
|
2018-10-11 02:06:56 +00:00
|
|
|
const auto end_time = std::chrono::high_resolution_clock::now() - start_time;
|
2018-07-30 22:42:20 +00:00
|
|
|
sample_count = out_sample_count;
|
|
|
|
consumed = static_cast<u32>(sizeof(OpusHeader) + hdr.sz);
|
2018-10-11 02:06:56 +00:00
|
|
|
if (performance_time.has_value()) {
|
|
|
|
performance_time->get() =
|
|
|
|
std::chrono::duration_cast<std::chrono::milliseconds>(end_time).count();
|
|
|
|
}
|
2018-07-30 22:42:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct OpusHeader {
|
|
|
|
u32_be sz; // Needs to be BE for some odd reason
|
|
|
|
INSERT_PADDING_WORDS(1);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(OpusHeader) == 0x8, "OpusHeader is an invalid size");
|
|
|
|
|
|
|
|
std::unique_ptr<OpusDecoder, OpusDeleter> decoder;
|
|
|
|
u32 sample_rate;
|
|
|
|
u32 channel_count;
|
|
|
|
};
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
static std::size_t WorkerBufferSize(u32 channel_count) {
|
2018-07-30 22:42:20 +00:00
|
|
|
ASSERT_MSG(channel_count == 1 || channel_count == 2, "Invalid channel count");
|
|
|
|
return opus_decoder_get_size(static_cast<int>(channel_count));
|
|
|
|
}
|
|
|
|
|
2018-06-25 13:44:17 +00:00
|
|
|
void HwOpus::GetWorkBufferSize(Kernel::HLERequestContext& ctx) {
|
2018-07-30 22:42:20 +00:00
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
auto sample_rate = rp.Pop<u32>();
|
|
|
|
auto channel_count = rp.Pop<u32>();
|
|
|
|
ASSERT_MSG(sample_rate == 48000 || sample_rate == 24000 || sample_rate == 16000 ||
|
|
|
|
sample_rate == 12000 || sample_rate == 8000,
|
|
|
|
"Invalid sample rate");
|
|
|
|
ASSERT_MSG(channel_count == 1 || channel_count == 2, "Invalid channel count");
|
|
|
|
u32 worker_buffer_sz = static_cast<u32>(WorkerBufferSize(channel_count));
|
|
|
|
LOG_DEBUG(Audio, "called worker_buffer_sz={}", worker_buffer_sz);
|
|
|
|
|
2018-06-25 13:44:17 +00:00
|
|
|
IPC::ResponseBuilder rb{ctx, 3};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2018-07-30 22:42:20 +00:00
|
|
|
rb.Push<u32>(worker_buffer_sz);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HwOpus::OpenOpusDecoder(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx};
|
|
|
|
auto sample_rate = rp.Pop<u32>();
|
|
|
|
auto channel_count = rp.Pop<u32>();
|
|
|
|
auto buffer_sz = rp.Pop<u32>();
|
|
|
|
LOG_DEBUG(Audio, "called sample_rate={}, channel_count={}, buffer_size={}", sample_rate,
|
|
|
|
channel_count, buffer_sz);
|
|
|
|
ASSERT_MSG(sample_rate == 48000 || sample_rate == 24000 || sample_rate == 16000 ||
|
|
|
|
sample_rate == 12000 || sample_rate == 8000,
|
|
|
|
"Invalid sample rate");
|
|
|
|
ASSERT_MSG(channel_count == 1 || channel_count == 2, "Invalid channel count");
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t worker_sz = WorkerBufferSize(channel_count);
|
2018-11-02 04:23:38 +00:00
|
|
|
ASSERT_MSG(buffer_sz >= worker_sz, "Worker buffer too large");
|
2018-07-30 22:42:20 +00:00
|
|
|
std::unique_ptr<OpusDecoder, OpusDeleter> decoder{
|
|
|
|
static_cast<OpusDecoder*>(operator new(worker_sz))};
|
|
|
|
if (opus_decoder_init(decoder.get(), sample_rate, channel_count)) {
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2};
|
|
|
|
// TODO(ogniK): Use correct error code
|
|
|
|
rb.Push(ResultCode(-1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushIpcInterface<IHardwareOpusDecoderManager>(std::move(decoder), sample_rate,
|
|
|
|
channel_count);
|
2018-06-25 13:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HwOpus::HwOpus() : ServiceFramework("hwopus") {
|
|
|
|
static const FunctionInfo functions[] = {
|
2018-07-30 22:42:20 +00:00
|
|
|
{0, &HwOpus::OpenOpusDecoder, "OpenOpusDecoder"},
|
2018-06-25 13:44:17 +00:00
|
|
|
{1, &HwOpus::GetWorkBufferSize, "GetWorkBufferSize"},
|
2018-07-30 22:42:20 +00:00
|
|
|
{2, nullptr, "OpenOpusDecoderForMultiStream"},
|
|
|
|
{3, nullptr, "GetWorkBufferSizeForMultiStream"},
|
2018-06-25 13:44:17 +00:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
hle/service: Default constructors and destructors in the cpp file where applicable
When a destructor isn't defaulted into a cpp file, it can cause the use
of forward declarations to seemingly fail to compile for non-obvious
reasons. It also allows inlining of the construction/destruction logic
all over the place where a constructor or destructor is invoked, which
can lead to code bloat. This isn't so much a worry here, given the
services won't be created and destroyed frequently.
The cause of the above mentioned non-obvious errors can be demonstrated
as follows:
------- Demonstrative example, if you know how the described error happens, skip forwards -------
Assume we have the following in the header, which we'll call "thing.h":
\#include <memory>
// Forward declaration. For example purposes, assume the definition
// of Object is in some header named "object.h"
class Object;
class Thing {
public:
// assume no constructors or destructors are specified here,
// or the constructors/destructors are defined as:
//
// Thing() = default;
// ~Thing() = default;
//
// ... Some interface member functions would be defined here
private:
std::shared_ptr<Object> obj;
};
If this header is included in a cpp file, (which we'll call "main.cpp"),
this will result in a compilation error, because even though no
destructor is specified, the destructor will still need to be generated by
the compiler because std::shared_ptr's destructor is *not* trivial (in
other words, it does something other than nothing), as std::shared_ptr's
destructor needs to do two things:
1. Decrement the shared reference count of the object being pointed to,
and if the reference count decrements to zero,
2. Free the Object instance's memory (aka deallocate the memory it's
pointing to).
And so the compiler generates the code for the destructor doing this inside main.cpp.
Now, keep in mind, the Object forward declaration is not a complete type. All it
does is tell the compiler "a type named Object exists" and allows us to
use the name in certain situations to avoid a header dependency. So the
compiler needs to generate destruction code for Object, but the compiler
doesn't know *how* to destruct it. A forward declaration doesn't tell
the compiler anything about Object's constructor or destructor. So, the
compiler will issue an error in this case because it's undefined
behavior to try and deallocate (or construct) an incomplete type and
std::shared_ptr and std::unique_ptr make sure this isn't the case
internally.
Now, if we had defaulted the destructor in "thing.cpp", where we also
include "object.h", this would never be an issue, as the destructor
would only have its code generated in one place, and it would be in a
place where the full class definition of Object would be visible to the
compiler.
---------------------- End example ----------------------------
Given these service classes are more than certainly going to change in
the future, this defaults the constructors and destructors into the
relevant cpp files to make the construction and destruction of all of
the services consistent and unlikely to run into cases where forward
declarations are indirectly causing compilation errors. It also has the
plus of avoiding the need to rebuild several services if destruction
logic changes, since it would only be necessary to recompile the single
cpp file.
2018-09-11 01:20:52 +00:00
|
|
|
HwOpus::~HwOpus() = default;
|
|
|
|
|
2018-06-25 13:44:17 +00:00
|
|
|
} // namespace Service::Audio
|