diff options
author | Paul B Mahol <[email protected]> | 2023-07-20 22:30:42 +0200 |
---|---|---|
committer | Paul B Mahol <[email protected]> | 2023-07-21 00:43:47 +0200 |
commit | 86a1904f417cdbeac48f4def86cd51e9b29d1ed1 (patch) | |
tree | e1b535c165731e05bc10618ab6e6059e212f8b29 | |
parent | 3dc93acc56258e25ae43176aafb85e2191695105 (diff) |
avfilter/avf_showcwt: move variables out of loop
-rw-r--r-- | libavfilter/avf_showcwt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avf_showcwt.c b/libavfilter/avf_showcwt.c index 578312cdd6..51a45ef636 100644 --- a/libavfilter/avf_showcwt.c +++ b/libavfilter/avf_showcwt.c @@ -634,12 +634,12 @@ static void compute_kernel(AVFilterContext *ctx) const float scale_factor = 1.f/(float)size; const int output_sample_count = s->output_sample_count; const int fsize = s->frequency_band_count; + int *kernel_start = s->kernel_start; + int *kernel_stop = s->kernel_stop; unsigned *index = s->index; for (int y = 0; y < fsize; y++) { AVComplexFloat *kernel = (AVComplexFloat *)s->kernel->extended_data[y]; - int *kernel_start = s->kernel_start; - int *kernel_stop = s->kernel_stop; float frequency = s->frequency_band[y*2]; float deviation = 1.f / (s->frequency_band[y*2+1] * output_sample_count); |