Subtitles.h
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:
VC书籍
开发平台:
Visual C++
- /**************************************************************************************
- * *
- * *
- **************************************************************************************/
- #ifndef SUBTITLES_H
- #define SUBTITLES_H
- #include "SubtitlesMicroDVD.h"
- #include "MediaClasses.h"
- class MediaSubtitler : public MediaItemSubtitler {
- private:
- MediaSubtitlerMicroDVD *microDVDSubtitler;
- MediaItemSubtitler *subtitler;
- public:
- MediaSubtitler();
- ~MediaSubtitler();
- media_type_t GetType();
- char *GetName();
- MP_RESULT Connect(MediaItem *item);
- MP_RESULT ReleaseConnections();
- DWORD GetCaps();
- MP_RESULT Configure(HINSTANCE hInstance, HWND hwnd);
- MP_RESULT Open(char *lpFilename);
- subtitles_t *GetSubtitles(DWORD frameNumber);
- MP_RESULT Close();
- };
- #endif