NSVFactory.h 598 B

12345678910111213141516171819202122
  1. #ifndef NULLSOFT_AACPLUSDECODER_NSVFACTORY_H
  2. #define NULLSOFT_AACPLUSDECODER_NSVFACTORY_H
  3. #include "../nsv/svc_nsvFactory.h"
  4. // {D121CDF8-8443-4430-8AD0-237FF4AC0163}
  5. static const GUID vp6_nsv_guid =
  6. { 0xd121cdf8, 0x8443, 0x4430, { 0x8a, 0xd0, 0x23, 0x7f, 0xf4, 0xac, 0x1, 0x63 } };
  7. class NSVFactory : public svc_nsvFactory
  8. {
  9. public:
  10. static const char *getServiceName() { return "VP6 NSV Decoder"; }
  11. static GUID getServiceGuid() { return vp6_nsv_guid; }
  12. IVideoDecoder *CreateVideoDecoder(int w, int h, double framerate, unsigned int fmt, int *flip);
  13. protected:
  14. RECVS_DISPATCH;
  15. };
  16. #endif