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
胡斌
2018-12-17 09:17:27 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
92c9ef1c4ab3983e3c7916aa144e536bdfd032df
92c9ef1c
1 parent
a5e3dcd1
parse rotate in record info file
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
8 行增加
和
0 行删除
pip/merge_pip.cpp
pip/merge_pip.cpp
查看文件 @
92c9ef1
...
...
@@ -849,6 +849,14 @@ int readfile(const char * filename, media_role role)
}
}
}
else
if
(
res
[
2
]
==
"rotate"
)
{
if
(
res
.
size
()
>
3
)
{
const
char
*
pInfo
=
res
[
3
].
c_str
();
if
(
!
strncmp
(
pInfo
,
"rotation="
,
9
)){
addinfo
(
res
[
1
].
c_str
(),
pInfo
+
9
);
}
}
}
}
}
return
0
;
...
...
请
注册
或
登录
后发表评论