mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/vaf_spectrumsynth: Fix mixed declaration and statment
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
cfda1bea4c
commit
48f5244df7
1 changed files with 2 additions and 1 deletions
|
|
@ -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];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue