aboutsummaryrefslogtreecommitdiff
path: root/Src/h264/NSVFactory.h
diff options
context:
space:
mode:
authorJean-Francois Mauguit <jfmauguit@mac.com>2024-09-24 09:03:25 -0400
committerGitHub <noreply@github.com>2024-09-24 09:03:25 -0400
commitbab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch)
tree12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/h264/NSVFactory.h
parent4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff)
parent20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff)
downloadwinamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/h264/NSVFactory.h')
-rw-r--r--Src/h264/NSVFactory.h20
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;
+};
+