fposrec.h
资源名称:NETVIDEO.rar [点击查看]
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
Visual C++
- #ifndef __FPOSREC_H__
- #define __FPOSREC_H__ 1
- typedef struct frame_file_pos_t
- {
- struct frame_file_pos_t *next;
- uint64_t timestamp;
- long file_position;
- uint64_t frames;
- } frame_file_pos_t;
- class CFilePosRecorder
- {
- public:
- CFilePosRecorder(void);
- ~CFilePosRecorder(void);
- void record_point(long file_position, uint64_t ts, uint64_t frame);
- const frame_file_pos_t *find_closest_point(uint64_t ts);
- private:
- frame_file_pos_t *m_first;
- frame_file_pos_t *m_last;
- };
- #endif