1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avfilter/vf_pp7: remove unused var

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Martin Vignali
2015-03-19 22:09:05 +01:00
committed by Michael Niedermayer
parent 03e9b1931b
commit 57e8047972

View File

@@ -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;