diff options
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; +}; + |