timecode.h
来自「由bmp生成mpeg2 的I_frame 数据」· C头文件 代码 · 共 26 行
H
26 行
#ifndef TIMECODE_H
#define TIMECODE_H
typedef struct {
int hh;
int mm;
int ss;
int ff;
} TIMECODE;
#ifdef __cplusplus
extern "C" {
#endif
#ifndef TIMECODE_C
extern void timecode2frame(TIMECODE *timecode, __int64 *frame, int rate, int drop);
extern void frame2timecode(__int64 *frame, TIMECODE *timecode, int rate, int drop);
extern void timecode2buffer(TIMECODE *timecode, char *buffer);
extern void buffer2timecode(const char *buffer, TIMECODE *timecode);
#endif
#ifdef __cplusplus
}
#endif
#endif /* TIMECODE_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?