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
cd256c3b
Commit
cd256c3b
authored
Mar 24, 2011
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmetadec.c: fix compiler warnings.
parent
da21225a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ffmetadec.c
libavformat/ffmetadec.c
+2
-2
No files found.
libavformat/ffmetadec.c
View file @
cd256c3b
...
...
@@ -61,14 +61,14 @@ static AVChapter *read_chapter(AVFormatContext *s)
if
(
sscanf
(
line
,
"TIMEBASE=%d/%d"
,
&
tb
.
num
,
&
tb
.
den
))
get_line
(
s
->
pb
,
line
,
sizeof
(
line
));
if
(
!
sscanf
(
line
,
"START=%
lld"
,
&
start
))
{
if
(
!
sscanf
(
line
,
"START=%
"
SCNd64
,
&
start
))
{
av_log
(
s
,
AV_LOG_ERROR
,
"Expected chapter start timestamp, found %s.
\n
"
,
line
);
start
=
(
s
->
nb_chapters
&&
s
->
chapters
[
s
->
nb_chapters
-
1
]
->
end
!=
AV_NOPTS_VALUE
)
?
s
->
chapters
[
s
->
nb_chapters
-
1
]
->
end
:
0
;
}
else
get_line
(
s
->
pb
,
line
,
sizeof
(
line
));
if
(
!
sscanf
(
line
,
"END=%
lld"
,
&
end
))
{
if
(
!
sscanf
(
line
,
"END=%
"
SCNd64
,
&
end
))
{
av_log
(
s
,
AV_LOG_ERROR
,
"Expected chapter end timestamp, found %s.
\n
"
,
line
);
end
=
AV_NOPTS_VALUE
;
}
...
...
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