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
0cc88646
Commit
0cc88646
authored
Jan 10, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: use av_toupper() in upcase_string()
parent
31801ded
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
ffprobe.c
ffprobe.c
+1
-5
No files found.
ffprobe.c
View file @
0cc88646
...
...
@@ -423,11 +423,7 @@ static inline char *upcase_string(char *dst, size_t dst_size, const char *src)
{
int
i
;
for
(
i
=
0
;
src
[
i
]
&&
i
<
dst_size
-
1
;
i
++
)
if
(
src
[
i
]
>=
'a'
&&
src
[
i
]
<=
'z'
)
{
dst
[
i
]
=
src
[
i
]
-
32
;
}
else
{
dst
[
i
]
=
src
[
i
];
}
dst
[
i
]
=
av_toupper
(
src
[
i
]);
dst
[
i
]
=
0
;
return
dst
;
}
...
...
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