其他分享
首页 > 其他分享> > rtmpdump应用在window中

rtmpdump应用在window中

作者:互联网

rtmp.c 中RTMP_GetTime()函数要改成如下:

#pragma comment(lib, "winmm.lib ")
uint32_t
RTMP_GetTime()
{
// #ifdef _DEBUG
// return 0;
// #elif defined(_WIN32)
// return timeGetTime();
#ifdef _WIN32
return timeGetTime();
#else
struct tms t;
if (!clk_tck) clk_tck = sysconf(_SC_CLK_TCK);
return times(&t) * 1000 / clk_tck;
#endif
}

标签:return,lib,clk,GetTime,rtmpdump,window,tck,应用,ifdef
来源: https://www.cnblogs.com/bigfi/p/10943434.html