diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2015-03-19 22:09:05 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-20 04:38:52 +0100 |
commit | 57e8047972b499d9805a90587b3fd7c42d9f44d9 (patch) | |
tree | 0f4b5119cc35dd4bff3b36f85814450fc692639a | |
parent | 03e9b1931b92884256c5dd262a583fce8a2bf2e9 (diff) | |
download | ffmpeg-57e8047972b499d9805a90587b3fd7c42d9f44d9.tar.gz |
avfilter/vf_pp7: remove unused var
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_pp7.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/vf_pp7.c b/libavfilter/vf_pp7.c index 1decdccc22..47617289d7 100644 --- a/libavfilter/vf_pp7.c +++ b/libavfilter/vf_pp7.c @@ -79,13 +79,6 @@ static const int factor[16] = { N / (N2 * N0), N / (N2 * N1), N / (N2 * N0), N / (N2 * N2), }; -static const int thres[16] = { - N / (SN0 * SN0), N / (SN0 * SN2), N / (SN0 * SN0), N / (SN0 * SN2), - N / (SN2 * SN0), N / (SN2 * SN2), N / (SN2 * SN0), N / (SN2 * SN2), - N / (SN0 * SN0), N / (SN0 * SN2), N / (SN0 * SN0), N / (SN0 * SN2), - N / (SN2 * SN0), N / (SN2 * SN2), N / (SN2 * SN0), N / (SN2 * SN2), -}; - static void init_thres2(PP7Context *p) { int qp, i; |