Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
9d40fe20
Commit
9d40fe20
authored
Apr 13, 2022
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_crystalizer: remove no longer needed wrapper function
parent
63d12a48
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
af_crystalizer.c
libavfilter/af_crystalizer.c
+1
-13
No files found.
libavfilter/af_crystalizer.c
View file @
9d40fe20
...
@@ -224,18 +224,6 @@ static av_cold void uninit(AVFilterContext *ctx)
...
@@ -224,18 +224,6 @@ static av_cold void uninit(AVFilterContext *ctx)
av_frame_free
(
&
s
->
prev
);
av_frame_free
(
&
s
->
prev
);
}
}
static
int
process_command
(
AVFilterContext
*
ctx
,
const
char
*
cmd
,
const
char
*
args
,
char
*
res
,
int
res_len
,
int
flags
)
{
int
ret
;
ret
=
ff_filter_process_command
(
ctx
,
cmd
,
args
,
res
,
res_len
,
flags
);
if
(
ret
<
0
)
return
ret
;
return
config_input
(
ctx
->
inputs
[
0
]);
}
static
const
AVFilterPad
inputs
[]
=
{
static
const
AVFilterPad
inputs
[]
=
{
{
{
.
name
=
"default"
,
.
name
=
"default"
,
...
@@ -262,7 +250,7 @@ const AVFilter ff_af_crystalizer = {
...
@@ -262,7 +250,7 @@ const AVFilter ff_af_crystalizer = {
FILTER_OUTPUTS
(
outputs
),
FILTER_OUTPUTS
(
outputs
),
FILTER_SAMPLEFMTS
(
AV_SAMPLE_FMT_FLT
,
AV_SAMPLE_FMT_FLTP
,
FILTER_SAMPLEFMTS
(
AV_SAMPLE_FMT_FLT
,
AV_SAMPLE_FMT_FLTP
,
AV_SAMPLE_FMT_DBL
,
AV_SAMPLE_FMT_DBLP
),
AV_SAMPLE_FMT_DBL
,
AV_SAMPLE_FMT_DBLP
),
.
process_command
=
process_command
,
.
process_command
=
ff_filter_
process_command
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
|
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
|
AVFILTER_FLAG_SLICE_THREADS
,
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