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
9e329185
Commit
9e329185
authored
Feb 25, 2014
by
Andrew Kelley
Committed by
Paul B Mahol
Feb 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_compand: fix invalid read
Fixes #3383.
parent
72d580f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
af_compand.c
libavfilter/af_compand.c
+6
-4
No files found.
libavfilter/af_compand.c
View file @
9e329185
...
@@ -46,6 +46,7 @@ typedef struct CompandContext {
...
@@ -46,6 +46,7 @@ typedef struct CompandContext {
char
*
attacks
,
*
decays
,
*
points
;
char
*
attacks
,
*
decays
,
*
points
;
CompandSegment
*
segments
;
CompandSegment
*
segments
;
ChanParam
*
channels
;
ChanParam
*
channels
;
int
nb_segments
;
double
in_min_lin
;
double
in_min_lin
;
double
out_min_lin
;
double
out_min_lin
;
double
curve_dB
;
double
curve_dB
;
...
@@ -160,11 +161,11 @@ static double get_volume(CompandContext *s, double in_lin)
...
@@ -160,11 +161,11 @@ static double get_volume(CompandContext *s, double in_lin)
in_log
=
log
(
in_lin
);
in_log
=
log
(
in_lin
);
for
(
i
=
1
;;
i
++
)
for
(
i
=
1
;
i
<
s
->
nb_segments
;
i
++
)
if
(
in_log
<=
s
->
segments
[
i
+
1
].
x
)
if
(
in_log
<=
s
->
segments
[
i
].
x
)
break
;
break
;
cs
=
&
s
->
segments
[
i
];
cs
=
&
s
->
segments
[
i
-
1
];
in_log
-=
cs
->
x
;
in_log
-=
cs
->
x
;
out_log
=
cs
->
y
+
in_log
*
(
cs
->
a
*
in_log
+
cs
->
b
);
out_log
=
cs
->
y
+
in_log
*
(
cs
->
a
*
in_log
+
cs
->
b
);
...
@@ -318,7 +319,8 @@ static int config_output(AVFilterLink *outlink)
...
@@ -318,7 +319,8 @@ static int config_output(AVFilterLink *outlink)
uninit
(
ctx
);
uninit
(
ctx
);
s
->
channels
=
av_mallocz_array
(
outlink
->
channels
,
sizeof
(
*
s
->
channels
));
s
->
channels
=
av_mallocz_array
(
outlink
->
channels
,
sizeof
(
*
s
->
channels
));
s
->
segments
=
av_mallocz_array
((
nb_points
+
4
)
*
2
,
sizeof
(
*
s
->
segments
));
s
->
nb_segments
=
(
nb_points
+
4
)
*
2
;
s
->
segments
=
av_mallocz_array
(
s
->
nb_segments
,
sizeof
(
*
s
->
segments
));
if
(
!
s
->
channels
||
!
s
->
segments
)
if
(
!
s
->
channels
||
!
s
->
segments
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
...
...
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