PrivateSection.h
资源名称:PSParse.rar [点击查看]
上传用户:thjx518
上传日期:2022-03-16
资源大小:179k
文件大小:1k
源码类别:
mpeg/mp3
开发平台:
Visual C++
- // PrivateSection.h: interface for the CPrivateSection class.
- //
- //////////////////////////////////////////////////////////////////////
- #ifndef __PRIVATESECTION_H__
- #define __PRIVATESECTION_H__
- #include "TSParse.h"
- #define SECTION_ERROR -1
- class CPrivateSection
- {
- protected:
- USHORT m_pid;
- public:
- int GetSections(UCHAR*buf,UCHAR tableid);
- int GetSection(UCHAR*buf,UCHAR sectionno,UCHAR tableid);
- CString m_file;
- int GetSection(UCHAR *buf,UCHAR sectionno,UCHAR tableid,USHORT extid);
- int GetSections(UCHAR*buf,UCHAR tableid,USHORT extid);
- CPrivateSection(CTSParse*ts,USHORT pid=0);
- virtual ~CPrivateSection();
- private:
- CTSParse *m_ts;
- };
- #endif