mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
25 lines
No EOL
817 B
C++
25 lines
No EOL
817 B
C++
#pragma once
|
|
#include <functional>
|
|
|
|
#include "audio/aac.hpp"
|
|
#include "helpers.hpp"
|
|
|
|
struct AAC_DECODER_INSTANCE;
|
|
|
|
namespace Audio::AAC {
|
|
class Decoder {
|
|
using DecoderHandle = AAC_DECODER_INSTANCE*;
|
|
using PaddrCallback = std::function<u8*(u32)>;
|
|
|
|
DecoderHandle decoderHandle = nullptr;
|
|
|
|
bool isInitialized() { return decoderHandle != nullptr; }
|
|
void initialize();
|
|
|
|
public:
|
|
// Decode function. Takes in a reference to the AAC response & request, and a callback for paddr -> pointer conversions
|
|
// We also allow for optionally muting the AAC output (setting all of it to 0) instead of properly decoding it, for debug/research purposes
|
|
void decode(AAC::Message& response, const AAC::Message& request, PaddrCallback paddrCallback, bool enableAudio = true);
|
|
~Decoder();
|
|
};
|
|
} // namespace Audio::AAC
|