Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
edca13e2
Commit
edca13e2
authored
Mar 01, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify.
The previous commit "accidentally" worked around Drew Yao's first integer overflow.
parent
3a628275
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+1
-2
No files found.
modules/demux/mp4/libmp4.c
View file @
edca13e2
...
...
@@ -1683,8 +1683,7 @@ static int MP4_ReadBox_padb( stream_t *p_stream, MP4_Box_t *p_box )
MP4_GET4BYTES
(
p_box
->
data
.
p_padb
->
i_sample_count
);
count
=
p_box
->
data
.
p_padb
->
i_sample_count
;
count
=
(
count
+
1
)
/
2
;
count
=
(
p_box
->
data
.
p_padb
->
i_sample_count
+
1
)
/
2
;
p_box
->
data
.
p_padb
->
i_reserved1
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
p_box
->
data
.
p_padb
->
i_pad2
=
calloc
(
count
,
sizeof
(
uint16_t
)
);
...
...
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