diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/replicant/file/FileDecoder.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/replicant/file/FileDecoder.h')
-rw-r--r-- | Src/replicant/file/FileDecoder.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Src/replicant/file/FileDecoder.h b/Src/replicant/file/FileDecoder.h new file mode 100644 index 00000000..2ac59fd6 --- /dev/null +++ b/Src/replicant/file/FileDecoder.h @@ -0,0 +1,18 @@ +#pragma once +#include "decode/svc_decode.h" +#include "nswasabi/ServiceName.h" + +// {F07160ED-2820-4DA5-9CE9-857A4CD9DFA0} +static const GUID file_decoder_guid = +{ 0xf07160ed, 0x2820, 0x4da5, { 0x9c, 0xe9, 0x85, 0x7a, 0x4c, 0xd9, 0xdf, 0xa0 } }; + +class FileDecoderService : public svc_decode +{ +public: + WASABI_SERVICE_NAME("File Decoder"); + WASABI_SERVICE_GUID(file_decoder_guid); + +private: + int WASABICALL DecodeService_CreateAudioDecoder_Callback(unsigned int pass, ifc_audio_decoder_callback **decoder, nx_uri_t filename, nsaudio::Parameters *parameters, int flags); + int WASABICALL DecodeService_CreateAudioDecoder_Pull(unsigned int pass, ifc_audio_decoder_pull **decoder, nx_uri_t filename, nsaudio::Parameters *parameters, int flags); +};
\ No newline at end of file |