From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/Winamp/VideoFeedFactory.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Src/Winamp/VideoFeedFactory.h (limited to 'Src/Winamp/VideoFeedFactory.h') diff --git a/Src/Winamp/VideoFeedFactory.h b/Src/Winamp/VideoFeedFactory.h new file mode 100644 index 00000000..748cf0b9 --- /dev/null +++ b/Src/Winamp/VideoFeedFactory.h @@ -0,0 +1,35 @@ +#ifndef NULLSOFT_WINAMP_VIDEOFEEDFACTORY_H +#define NULLSOFT_WINAMP_VIDEOFEEDFACTORY_H + +#include +#include +#include +#include "api.h" + +// {BD838BA9-1CE8-4f73-BBC0-58DA5168517F} +static const GUID videoFeedFactoryGUID = +{ 0xbd838ba9, 0x1ce8, 0x4f73, { 0xbb, 0xc0, 0x58, 0xda, 0x51, 0x68, 0x51, 0x7f } }; + + +class VideoTextFeedFactory : public waServiceBase { +public: + VideoTextFeedFactory() : waServiceBase(videoFeedFactoryGUID) {} + static const char *getServiceName() { return "Video Text Feed"; } + svc_textFeed *getService() { return videoTextFeed; } + static FOURCC getServiceType() { return WaSvc::TEXTFEED; } +}; + +// {87291C37-EC56-476b-B813-ED0F6F90C3B7} +static const GUID playlistFeedFactory = +{ 0x87291c37, 0xec56, 0x476b, { 0xb8, 0x13, 0xed, 0xf, 0x6f, 0x90, 0xc3, 0xb7 } }; + + +class PlaylistTextFeedFactory : public waServiceBase { +public: + PlaylistTextFeedFactory() : waServiceBase(playlistFeedFactory) {} + static const char *getServiceName() { return "Playlist Text Feed"; } + svc_textFeed *getService() { return playlistTextFeed; } + static FOURCC getServiceType() { return WaSvc::TEXTFEED; } +}; + +#endif \ No newline at end of file -- cgit