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
8c1b65fe
Commit
8c1b65fe
authored
Aug 28, 2021
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_afreqshift: do not forget to update coeffs at runtime
parent
1da2dd5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
af_afreqshift.c
libavfilter/af_afreqshift.c
+4
-0
No files found.
libavfilter/af_afreqshift.c
View file @
8c1b65fe
...
...
@@ -321,6 +321,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
AVFrame
*
out
;
ThreadData
td
;
if
(
s
->
old_nb_coeffs
!=
s
->
nb_coeffs
)
compute_coefs
(
s
->
cd
,
s
->
cf
,
s
->
nb_coeffs
*
2
,
2
.
*
20
.
/
inlink
->
sample_rate
);
s
->
old_nb_coeffs
=
s
->
nb_coeffs
;
if
(
av_frame_is_writable
(
in
))
{
out
=
in
;
}
else
{
...
...
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