Browse code

avfilter/vf_pp7: remove unused var

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Martin Vignali authored on 2015/03/20 06:09:05
Showing 1 changed files
... ...
@@ -79,13 +79,6 @@ static const int factor[16] = {
79 79
     N / (N2 * N0), N / (N2 * N1), N / (N2 * N0), N / (N2 * N2),
80 80
 };
81 81
 
82
-static const int thres[16] = {
83
-    N / (SN0 * SN0), N / (SN0 * SN2), N / (SN0 * SN0), N / (SN0 * SN2),
84
-    N / (SN2 * SN0), N / (SN2 * SN2), N / (SN2 * SN0), N / (SN2 * SN2),
85
-    N / (SN0 * SN0), N / (SN0 * SN2), N / (SN0 * SN0), N / (SN0 * SN2),
86
-    N / (SN2 * SN0), N / (SN2 * SN2), N / (SN2 * SN0), N / (SN2 * SN2),
87
-};
88
-
89 82
 static void init_thres2(PP7Context *p)
90 83
 {
91 84
     int qp, i;