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
48f5244d
Commit
48f5244d
authored
Jan 15, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vaf_spectrumsynth: Fix mixed declaration and statment
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
cfda1bea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vaf_spectrumsynth.c
libavfilter/vaf_spectrumsynth.c
+2
-1
No files found.
libavfilter/vaf_spectrumsynth.c
View file @
48f5244d
...
...
@@ -392,6 +392,7 @@ static int try_push_frame(AVFilterContext *ctx, int x)
if
(
ch
==
s
->
channels
-
1
)
{
float
*
dst
;
int
c
;
out
=
ff_get_audio_buffer
(
outlink
,
s
->
win_size
);
if
(
!
out
)
{
...
...
@@ -402,7 +403,7 @@ static int try_push_frame(AVFilterContext *ctx, int x)
out
->
pts
=
s
->
pts
;
s
->
pts
+=
s
->
win_size
;
for
(
int
c
=
0
;
c
<
s
->
channels
;
c
++
)
{
for
(
c
=
0
;
c
<
s
->
channels
;
c
++
)
{
dst
=
(
float
*
)
out
->
extended_data
[
c
];
buf
=
(
float
*
)
s
->
buffer
->
extended_data
[
c
];
...
...
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