diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/replicant/mp4/MP4Decoder.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/replicant/mp4/MP4Decoder.h')
-rw-r--r-- | Src/replicant/mp4/MP4Decoder.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Src/replicant/mp4/MP4Decoder.h b/Src/replicant/mp4/MP4Decoder.h new file mode 100644 index 00000000..f7791cb4 --- /dev/null +++ b/Src/replicant/mp4/MP4Decoder.h @@ -0,0 +1,24 @@ +// +// MP4Decoder.h +// +// Created by Ben Allison on 1/17/12. +// Copyright (c) 2012 Nullsoft, Inc. All rights reserved. +// +#pragma once + +#include "file/svc_filedecode.h" +#include "nswasabi/ServiceName.h" + +// {7EDB2571-AA99-4DF0-8247-A7846B338B04} +static const GUID mp4_file_decoder_guid = +{ 0x7edb2571, 0xaa99, 0x4df0, { 0x82, 0x47, 0xa7, 0x84, 0x6b, 0x33, 0x8b, 0x4 } }; + +class MP4Decoder : public svc_filedecode +{ +public: + WASABI_SERVICE_NAME("MP4 File Decoder"); + WASABI_SERVICE_GUID(mp4_file_decoder_guid); + +private: + ns_error_t WASABICALL FileDecodeService_CreateAudioDecoder_Callback(ifc_audio_decoder_callback **decoder, nx_uri_t filename, nx_file_t file, ifc_metadata *parent_metadata, nsaudio::Parameters *parameters, int flags); +};
\ No newline at end of file |