Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2ba20d79
Commit
2ba20d79
authored
Jul 26, 2017
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/htmlsubtitles: simplify 1-char tags case insensitive test
parent
1b006003
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
htmlsubtitles.c
libavcodec/htmlsubtitles.c
+1
-1
No files found.
libavcodec/htmlsubtitles.c
View file @
2ba20d79
...
...
@@ -165,7 +165,7 @@ int ff_htmlmarkup_to_ass(void *log_ctx, AVBPrint *dst, const char *in)
if
(
stack
[
sptr
].
param
[
i
][
0
])
av_bprintf
(
dst
,
"%s"
,
stack
[
sptr
].
param
[
i
]);
}
}
else
if
(
tagname
[
0
]
&&
!
tagname
[
1
]
&&
av_stristr
(
"bisu"
,
tagname
))
{
}
else
if
(
tagname
[
0
]
&&
!
tagname
[
1
]
&&
strchr
(
"bisu"
,
av_tolower
(
tagname
[
0
])
))
{
av_bprintf
(
dst
,
"{
\\
%c%d}"
,
(
char
)
av_tolower
(
tagname
[
0
]),
!
tag_close
);
}
else
if
(
!
av_strcasecmp
(
tagname
,
"br"
))
{
av_bprintf
(
dst
,
"
\\
N"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment