Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
merge_av
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
胡斌
2017-11-29 23:27:00 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d191e6b843487addaf8f2699464e31264826dc43
d191e6b8
1 parent
016ce310
fix compile error in linux
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
2 行增加
和
1 行删除
merge_av/merge_av.cpp
merge_av/merge_av.cpp
查看文件 @
d191e6b
...
...
@@ -4,6 +4,7 @@
#include <iostream>
#include <fstream>
#include <vector>
#include <string.h>
bool
only_print
=
false
;
using
namespace
std
;
...
...
@@ -129,7 +130,7 @@ void concate_files(vector<string > merged_files)
strcat
(
buf
,
" "
);
strcat
(
buf
,
merged_files
[
0
].
c_str
());
}
strcat
(
buf
">"
);
strcat
(
buf
,
">"
);
#endif // WIN32
strcat
(
buf
,
" m.ts"
);
run_shell_cmd
(
buf
);
...
...
请
注册
或
登录
后发表评论