-
Notifications
You must be signed in to change notification settings - Fork 3
/
bitdance_pcqa.h
36 lines (30 loc) · 1.12 KB
/
bitdance_pcqa.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* Copyright (C) 2019-2021 Rafael Diniz <[email protected]>
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef __BITDANCE_PCQA
#define __BITDANCE_PCQA
#define MAX_FILENAME 4096
#define MAX_NR_METRICS 16
#define MAX_NN_LIST_SIZE 16
#define DLCP_12B 0 // Differential Local Cielab Distance Pattern 12-bit
#define DLCP_8B 1 // Differential Local Cielab Distance Pattern 8-bit
#define DGEO_16B 2
#define DGEO_12B 3
#define DGEO_8B 4
#endif /* __BITDANCE_PCQA */