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
5dc47a2b
Commit
5dc47a2b
authored
Feb 03, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
matroskaenc: Validate chapter start and end times
CC: libav-stable@libav.org Bug-Id: CID 1265717
parent
f8c17197
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
matroskaenc.c
libavformat/matroskaenc.c
+6
-4
No files found.
libavformat/matroskaenc.c
View file @
5dc47a2b
...
...
@@ -915,14 +915,16 @@ static int mkv_write_chapters(AVFormatContext *s)
for
(
i
=
0
;
i
<
s
->
nb_chapters
;
i
++
)
{
ebml_master
chapteratom
,
chapterdisplay
;
AVChapter
*
c
=
s
->
chapters
[
i
];
int
chapterstart
=
av_rescale_q
(
c
->
start
,
c
->
time_base
,
scale
);
int
chapterend
=
av_rescale_q
(
c
->
end
,
c
->
time_base
,
scale
);
AVDictionaryEntry
*
t
=
NULL
;
if
(
chapterstart
<
0
||
chapterstart
>
chapterend
)
return
AVERROR_INVALIDDATA
;
chapteratom
=
start_ebml_master
(
pb
,
MATROSKA_ID_CHAPTERATOM
,
0
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERUID
,
c
->
id
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERTIMESTART
,
av_rescale_q
(
c
->
start
,
c
->
time_base
,
scale
));
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERTIMEEND
,
av_rescale_q
(
c
->
end
,
c
->
time_base
,
scale
));
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERTIMESTART
,
chapterstart
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERTIMEEND
,
chapterend
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERFLAGHIDDEN
,
0
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CHAPTERFLAGENABLED
,
1
);
if
((
t
=
av_dict_get
(
c
->
metadata
,
"title"
,
NULL
,
0
)))
{
...
...
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