Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
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
winlin
8 years ago
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b6bb3f244655f3b8b3a81ec3b1ed603621cc5b49
b6bb3f24
1 parent
858951da
fix c99 build failed.
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
3 行增加
和
2 行删除
trunk/research/librtmp/srs_ingest_mp4.c
trunk/research/librtmp/srs_ingest_mp4.c
查看文件 @
b6bb3f2
...
...
@@ -45,14 +45,15 @@ int main(int argc, char** argv)
exit
(
-
1
);
}
for
(
int
opt
=
0
;
opt
<
argc
;
opt
++
)
{
int
opt
;
for
(
opt
=
0
;
opt
<
argc
;
opt
++
)
{
srs_human_trace
(
"The argv[%d]=%s"
,
opt
,
argv
[
opt
]);
}
// fill the options for mac
char
*
in_file
=
NULL
;
char
*
out_rtmp_url
=
NULL
;
for
(
int
opt
=
0
;
opt
<
argc
-
1
;
opt
++
)
{
for
(
opt
=
0
;
opt
<
argc
-
1
;
opt
++
)
{
// ignore all options except -i and -y.
char
*
p
=
argv
[
opt
];
...
...
请
注册
或
登录
后发表评论