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
97c7c39d
Commit
97c7c39d
authored
Aug 31, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_waveform: simplify memory allocations
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
32f217ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
vf_waveform.c
libavfilter/vf_waveform.c
+12
-14
No files found.
libavfilter/vf_waveform.c
View file @
97c7c39d
...
@@ -52,6 +52,7 @@ typedef struct WaveformContext {
...
@@ -52,6 +52,7 @@ typedef struct WaveformContext {
int
eend
[
4
];
int
eend
[
4
];
int
*
emax
[
4
];
int
*
emax
[
4
];
int
*
emin
[
4
];
int
*
emin
[
4
];
int
*
peak
;
int
filter
;
int
filter
;
int
size
;
int
size
;
void
(
*
waveform
)(
struct
WaveformContext
*
s
,
AVFrame
*
in
,
AVFrame
*
out
,
void
(
*
waveform
)(
struct
WaveformContext
*
s
,
AVFrame
*
in
,
AVFrame
*
out
,
...
@@ -908,19 +909,20 @@ static int config_output(AVFilterLink *outlink)
...
@@ -908,19 +909,20 @@ static int config_output(AVFilterLink *outlink)
comp
++
;
comp
++
;
}
}
for
(
p
=
0
;
p
<
4
;
p
++
)
{
av_freep
(
&
s
->
peak
);
av_freep
(
&
s
->
emax
[
p
]);
av_freep
(
&
s
->
emin
[
p
]);
}
if
(
s
->
mode
)
{
if
(
s
->
mode
)
{
outlink
->
h
=
s
->
size
*
FFMAX
(
comp
*
s
->
display
,
1
);
outlink
->
h
=
s
->
size
*
FFMAX
(
comp
*
s
->
display
,
1
);
size
=
inlink
->
w
*
sizeof
(
int
)
;
size
=
inlink
->
w
;
}
else
{
}
else
{
outlink
->
w
=
s
->
size
*
FFMAX
(
comp
*
s
->
display
,
1
);
outlink
->
w
=
s
->
size
*
FFMAX
(
comp
*
s
->
display
,
1
);
size
=
inlink
->
h
*
sizeof
(
int
)
;
size
=
inlink
->
h
;
}
}
s
->
peak
=
av_malloc_array
(
size
,
8
*
sizeof
(
*
s
->
peak
));
if
(
!
s
->
peak
)
return
AVERROR
(
ENOMEM
);
for
(
p
=
0
;
p
<
4
;
p
++
)
{
for
(
p
=
0
;
p
<
4
;
p
++
)
{
const
int
is_chroma
=
(
p
==
1
||
p
==
2
);
const
int
is_chroma
=
(
p
==
1
||
p
==
2
);
const
int
shift_w
=
(
is_chroma
?
s
->
desc
->
log2_chroma_w
:
0
);
const
int
shift_w
=
(
is_chroma
?
s
->
desc
->
log2_chroma_w
:
0
);
...
@@ -933,8 +935,8 @@ static int config_output(AVFilterLink *outlink)
...
@@ -933,8 +935,8 @@ static int config_output(AVFilterLink *outlink)
shift
=
s
->
mode
?
shift_h
:
shift_w
;
shift
=
s
->
mode
?
shift_h
:
shift_w
;
s
->
emax
[
plane
]
=
av_malloc
(
size
);
s
->
emax
[
plane
]
=
s
->
peak
+
size
*
(
p
+
0
);
s
->
emin
[
plane
]
=
av_malloc
(
size
);
s
->
emin
[
plane
]
=
s
->
peak
+
size
*
(
p
+
4
);
if
(
!
s
->
emin
[
plane
]
||
!
s
->
emax
[
plane
])
if
(
!
s
->
emin
[
plane
]
||
!
s
->
emax
[
plane
])
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
...
@@ -942,7 +944,7 @@ static int config_output(AVFilterLink *outlink)
...
@@ -942,7 +944,7 @@ static int config_output(AVFilterLink *outlink)
offset
=
j
++
*
s
->
size
*
s
->
display
;
offset
=
j
++
*
s
->
size
*
s
->
display
;
s
->
estart
[
plane
]
=
offset
>>
shift
;
s
->
estart
[
plane
]
=
offset
>>
shift
;
s
->
eend
[
plane
]
=
(
offset
+
s
->
size
-
1
)
>>
shift
;
s
->
eend
[
plane
]
=
(
offset
+
s
->
size
-
1
)
>>
shift
;
for
(
i
=
0
;
i
<
size
/
sizeof
(
int
)
;
i
++
)
{
for
(
i
=
0
;
i
<
size
;
i
++
)
{
s
->
emax
[
plane
][
i
]
=
s
->
estart
[
plane
];
s
->
emax
[
plane
][
i
]
=
s
->
estart
[
plane
];
s
->
emin
[
plane
][
i
]
=
s
->
eend
[
plane
];
s
->
emin
[
plane
][
i
]
=
s
->
eend
[
plane
];
}
}
...
@@ -992,12 +994,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
...
@@ -992,12 +994,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
static
av_cold
void
uninit
(
AVFilterContext
*
ctx
)
{
{
WaveformContext
*
s
=
ctx
->
priv
;
WaveformContext
*
s
=
ctx
->
priv
;
int
p
;
for
(
p
=
0
;
p
<
4
;
p
++
)
{
av_freep
(
&
s
->
peak
);
av_freep
(
&
s
->
emax
[
p
]);
av_freep
(
&
s
->
emin
[
p
]);
}
}
}
static
const
AVFilterPad
inputs
[]
=
{
static
const
AVFilterPad
inputs
[]
=
{
...
...
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