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/h264/NSVFactory.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/h264/NSVFactory.h')
-rw-r--r-- | Src/h264/NSVFactory.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Src/h264/NSVFactory.h b/Src/h264/NSVFactory.h new file mode 100644 index 00000000..9d1acb5f --- /dev/null +++ b/Src/h264/NSVFactory.h @@ -0,0 +1,20 @@ +#pragma once +#include "../nsv/svc_nsvFactory.h" + +// {262CCE92-78DC-47a9-AFFB-2471799CA799} +static const GUID h264_nsv_guid = +{ 0x262cce92, 0x78dc, 0x47a9, { 0xaf, 0xfb, 0x24, 0x71, 0x79, 0x9c, 0xa7, 0x99 } }; + + + +class NSVFactory : public svc_nsvFactory +{ +public: + static const char *getServiceName() { return "H.264 NSV Decoder"; } + static GUID getServiceGuid() { return h264_nsv_guid; } + IVideoDecoder *CreateVideoDecoder(int w, int h, double framerate, unsigned int fmt, int *flip); + +protected: + RECVS_DISPATCH; +}; + |