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/mp4/svc_mp4decoder.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/replicant/mp4/svc_mp4decoder.h')
-rw-r--r-- | Src/replicant/mp4/svc_mp4decoder.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Src/replicant/mp4/svc_mp4decoder.h b/Src/replicant/mp4/svc_mp4decoder.h new file mode 100644 index 00000000..d8e242ad --- /dev/null +++ b/Src/replicant/mp4/svc_mp4decoder.h @@ -0,0 +1,27 @@ +#pragma once +#include "foundation/dispatch.h" +#include "ifc_mp4file.h" + +class ifc_mp4audiodecoder; +class ifc_mp4videodecoder; + +// {39A53910-CCFE-465D-A46C-F0B95C7DD257} +static const GUID mp4_decoder_service_type_guid = +{ 0x39a53910, 0xccfe, 0x465d, { 0xa4, 0x6c, 0xf0, 0xb9, 0x5c, 0x7d, 0xd2, 0x57 } }; + +class svc_mp4decoder : public Wasabi2::Dispatchable +{ +protected: + svc_mp4decoder() : Dispatchable(DISPATCHABLE_VERSION) {} + ~svc_mp4decoder() {} +public: + static GUID GetServiceType() { return mp4_decoder_service_type_guid; } + int CreateAudioDecoder(ifc_mp4file *mp4_file, ifc_mp4file::TrackID mp4_track, ifc_mp4audiodecoder **decoder) { return MP4DecoderService_CreateAudioDecoder(mp4_file, mp4_track, decoder); } + + enum + { + DISPATCHABLE_VERSION=0, + }; +private: + virtual int WASABICALL MP4DecoderService_CreateAudioDecoder(ifc_mp4file *mp4_file, ifc_mp4file::TrackID mp4_track, ifc_mp4audiodecoder **decoder)=0; +}; |