MP4Factory.h 506 B

123456789101112131415161718192021222324
  1. #ifndef NULLSOFT_MP3_MP4FACTORY_H
  2. #define NULLSOFT_MP3_MP4FACTORY_H
  3. #include <api/service/waservicefactory.h>
  4. #include <api/service/services.h>
  5. class MPEG4Factory : public waServiceFactory
  6. {
  7. public:
  8. FOURCC GetServiceType();
  9. const char *GetServiceName();
  10. GUID GetGUID();
  11. void *GetInterface(int global_lock);
  12. int SupportNonLockingInterface();
  13. int ReleaseInterface(void *ifc);
  14. const char *GetTestString();
  15. int ServiceNotify(int msg, int param1, int param2);
  16. protected:
  17. RECVS_DISPATCH;
  18. };
  19. #endif