Browse Source

vfilter/avf_showcqt: fix 'mixed declarations and code'

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
1df441eaa8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/avf_showcqt.c

+ 2
- 2
libavfilter/avf_showcqt.c View File

@@ -387,6 +387,8 @@ static int plot_cqt(AVFilterLink *inlink)
if (!s->spectogram_count) {
uint8_t *data = (uint8_t*) s->outpicref->data[0];
float rcp_result[VIDEO_WIDTH];
int total_length = linesize * spectogram_height;
int back_length = linesize * s->spectogram_index;

for (x = 0; x < video_width; x++)
rcp_result[x] = 1.0f / (result[x][3]+0.0001f);
@@ -448,8 +450,6 @@ static int plot_cqt(AVFilterLink *inlink)
}

/* drawing spectogram/sonogram */
int total_length = linesize * spectogram_height;
int back_length = linesize * s->spectogram_index;
data += spectogram_start * linesize;
memcpy(data, s->spectogram + s->spectogram_index*linesize, total_length - back_length);



Loading…
Cancel
Save