shentu521
shentu521
> npm run-script configure > [email protected] configure /webrtc_server/apprtc/node_modules/closurecompiler > node scripts/configure.js Configuring ClosureCompiler.js 1.6.1 ... Downloading https://dl.google.com/closure-compiler/compiler-latest.tar.gz ... ✖ Download failed: Error: read ECONNRESET ✖ Unfortunately, ClosureCompiler.js could not be...
zhangkai@zhangkai:/gndemo$ gn gen out/Default Traceback (most recent call last): File "/webrtc/depot_tools/gn.py", line 71, in sys.exit(main(sys.argv)) File "/webrtc/depot_tools/gn.py", line 49, in main 'gn', 'gn' + gclient_utils.GetExeSuffix()) File "/usr/lib/python2.7/posixpath.py", line 70, in...
大佬,最近在用librtsp做server端时,我们选择的异步模式: `void RTSPServer::StartRTSPServer1() { // tcp 异步 aio_worker_init(N_AIO_THREAD); struct aio_rtsp_handler_t handler; memset(&handler, 0, sizeof(handler)); handler.base.ondescribe = rtsp_ondescribe; handler.base.onsetup = rtsp_onsetup; handler.base.onplay = rtsp_onplay; // handler.base.onpause = rtsp_onpause; handler.base.onteardown = rtsp_onteardown;...
## 现象描述 bool mayLooped(SEQ last_seq, SEQ now_seq) { return last_seq > SEQ_MAX - _max_distance || now_seq < _max_distance; } 用于判断回环的函数,感觉正确的应该是: bool mayLooped(SEQ last_seq, SEQ now_seq) { return last_seq > SEQ_MAX...