diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-09-04 17:39:18 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-09-04 18:02:52 +0200 |
commit | 939f4b35b838b2295d494ff76bfb1c870f98945d (patch) | |
tree | 8d45ad6dc78edeaf50dcd7764e9356a36f306710 /libavfilter | |
parent | ef91d18a04e0fdf4ca989b34e8fb5d0ea923b5f5 (diff) | |
download | ffmpeg-939f4b35b838b2295d494ff76bfb1c870f98945d.tar.gz |
avfilter/af_arnndn: reduce size of second_check[] table
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_arnndn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_arnndn.c b/libavfilter/af_arnndn.c index a6e1215ac9..ba25710c46 100644 --- a/libavfilter/af_arnndn.c +++ b/libavfilter/af_arnndn.c @@ -780,7 +780,7 @@ static float compute_pitch_gain(float xy, float xx, float yy) return xy / sqrtf(1.f + xx * yy); } -static const int second_check[16] = {0, 0, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 5, 2, 3, 2}; +static const uint8_t second_check[16] = {0, 0, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 5, 2, 3, 2}; static float remove_doubling(float *x, int maxperiod, int minperiod, int N, int *T0_, int prev_period, float prev_gain) { |