Commit 585f7c3a by xia-chu

修复ffmpeg日志保存目录相关bug

每次调用addFFmpegSource/getSnap接口时,都可能导致篡改全局配置变量
parent f69f3b30
...@@ -108,7 +108,7 @@ static int cloneFunc(void *ptr) { ...@@ -108,7 +108,7 @@ static int cloneFunc(void *ptr) {
#endif #endif
void Process::run(const string &cmd, string &log_file) { void Process::run(const string &cmd, string log_file) {
kill(2000); kill(2000);
#ifdef _WIN32 #ifdef _WIN32
STARTUPINFO si = { 0 }; STARTUPINFO si = { 0 };
......
...@@ -26,7 +26,7 @@ class Process { ...@@ -26,7 +26,7 @@ class Process {
public: public:
Process(); Process();
~Process(); ~Process();
void run(const std::string &cmd, std::string &log_file); void run(const std::string &cmd, std::string log_file);
void kill(int max_delay,bool force = false); void kill(int max_delay,bool force = false);
bool wait(bool block = true); bool wait(bool block = true);
int exit_code(); int exit_code();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论