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
cd671ea0
Commit
cd671ea0
authored
Feb 07, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_acrossover: add slice threading support
parent
2ca14d84
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
21 deletions
+43
-21
af_acrossover.c
libavfilter/af_acrossover.c
+43
-21
No files found.
libavfilter/af_acrossover.c
View file @
cd671ea0
...
...
@@ -60,6 +60,9 @@ typedef struct AudioCrossoverContext {
float
*
splits
;
CrossoverChannel
*
xover
;
AVFrame
*
input_frame
;
AVFrame
*
frames
[
MAX_BANDS
];
}
AudioCrossoverContext
;
#define OFFSET(x) offsetof(AudioCrossoverContext, x)
...
...
@@ -230,32 +233,20 @@ static double biquad_process(BiquadContext *b, double in)
return
out
;
}
static
int
filter_
frame
(
AVFilterLink
*
inlink
,
AVFrame
*
in
)
static
int
filter_
channels
(
AVFilterContext
*
ctx
,
void
*
arg
,
int
jobnr
,
int
nb_jobs
)
{
AVFilterContext
*
ctx
=
inlink
->
dst
;
AudioCrossoverContext
*
s
=
ctx
->
priv
;
AVFrame
*
frames
[
MAX_BANDS
]
=
{
NULL
};
int
i
,
f
,
ch
,
band
,
ret
=
0
;
for
(
i
=
0
;
i
<
ctx
->
nb_outputs
;
i
++
)
{
frames
[
i
]
=
ff_get_audio_buffer
(
ctx
->
outputs
[
i
],
in
->
nb_samples
);
if
(
!
frames
[
i
])
{
ret
=
AVERROR
(
ENOMEM
);
break
;
}
AVFrame
*
in
=
s
->
input_frame
;
AVFrame
**
frames
=
s
->
frames
;
const
int
start
=
(
in
->
channels
*
jobnr
)
/
nb_jobs
;
const
int
end
=
(
in
->
channels
*
(
jobnr
+
1
))
/
nb_jobs
;
int
f
,
band
;
frames
[
i
]
->
pts
=
in
->
pts
;
}
if
(
ret
<
0
)
goto
fail
;
for
(
ch
=
0
;
ch
<
inlink
->
channels
;
ch
++
)
{
for
(
int
ch
=
start
;
ch
<
end
;
ch
++
)
{
const
double
*
src
=
(
const
double
*
)
in
->
extended_data
[
ch
];
CrossoverChannel
*
xover
=
&
s
->
xover
[
ch
];
for
(
i
=
0
;
i
<
in
->
nb_samples
;
i
++
)
{
for
(
i
nt
i
=
0
;
i
<
in
->
nb_samples
;
i
++
)
{
double
sample
=
src
[
i
],
lo
,
hi
;
for
(
band
=
0
;
band
<
ctx
->
nb_outputs
;
band
++
)
{
...
...
@@ -276,14 +267,44 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
}
return
0
;
}
static
int
filter_frame
(
AVFilterLink
*
inlink
,
AVFrame
*
in
)
{
AVFilterContext
*
ctx
=
inlink
->
dst
;
AudioCrossoverContext
*
s
=
ctx
->
priv
;
AVFrame
**
frames
=
s
->
frames
;
int
i
,
ret
=
0
;
for
(
i
=
0
;
i
<
ctx
->
nb_outputs
;
i
++
)
{
frames
[
i
]
=
ff_get_audio_buffer
(
ctx
->
outputs
[
i
],
in
->
nb_samples
);
if
(
!
frames
[
i
])
{
ret
=
AVERROR
(
ENOMEM
);
break
;
}
frames
[
i
]
->
pts
=
in
->
pts
;
}
if
(
ret
<
0
)
goto
fail
;
s
->
input_frame
=
in
;
ctx
->
internal
->
execute
(
ctx
,
filter_channels
,
NULL
,
NULL
,
FFMIN
(
inlink
->
channels
,
ff_filter_get_nb_threads
(
ctx
)));
for
(
i
=
0
;
i
<
ctx
->
nb_outputs
;
i
++
)
{
ret
=
ff_filter_frame
(
ctx
->
outputs
[
i
],
frames
[
i
]);
frames
[
i
]
=
NULL
;
if
(
ret
<
0
)
break
;
}
fail:
av_frame_free
(
&
in
);
s
->
input_frame
=
NULL
;
return
ret
;
}
...
...
@@ -320,5 +341,6 @@ AVFilter ff_af_acrossover = {
.
query_formats
=
query_formats
,
.
inputs
=
inputs
,
.
outputs
=
NULL
,
.
flags
=
AVFILTER_FLAG_DYNAMIC_OUTPUTS
,
.
flags
=
AVFILTER_FLAG_DYNAMIC_OUTPUTS
|
AVFILTER_FLAG_SLICE_THREADS
,
};
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