Commit | Line | Data |
---|---|---|
3057fa66 A |
1 | /* |
2 | Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at) | |
3 | ||
4 | This program is free software; you can redistribute it and/or modify | |
5 | it under the terms of the GNU General Public License as published by | |
6 | the Free Software Foundation; either version 2 of the License, or | |
7 | (at your option) any later version. | |
8 | ||
9 | This program is distributed in the hope that it will be useful, | |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | GNU General Public License for more details. | |
13 | ||
14 | You should have received a copy of the GNU General Public License | |
15 | along with this program; if not, write to the Free Software | |
16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
17 | */ | |
18 | ||
9f3328bc A |
19 | // POSTPROCESS_H is defined by opendivx's postprocess.h |
20 | #ifndef NEWPOSTPROCESS_H | |
21 | #define NEWPOSTPROCESS_H | |
3057fa66 A |
22 | |
23 | #define BLOCK_SIZE 8 | |
3057fa66 | 24 | #define TEMP_STRIDE 8 |
13e00528 A |
25 | |
26 | #define V_DEBLOCK 0x01 | |
27 | #define H_DEBLOCK 0x02 | |
28 | #define DERING 0x04 | |
d5a1a995 | 29 | #define LEVEL_FIX 0x08 /* Brightness & Contrast */ |
13e00528 | 30 | |
9f45d04d MN |
31 | #define LUM_V_DEBLOCK V_DEBLOCK // 1 |
32 | #define LUM_H_DEBLOCK H_DEBLOCK // 2 | |
33 | #define CHROM_V_DEBLOCK (V_DEBLOCK<<4) // 16 | |
34 | #define CHROM_H_DEBLOCK (H_DEBLOCK<<4) // 32 | |
35 | #define LUM_DERING DERING // 4 | |
36 | #define CHROM_DERING (DERING<<4) // 64 | |
37 | #define LUM_LEVEL_FIX LEVEL_FIX // 8 | |
d5a1a995 | 38 | //not supported currently |
9f45d04d | 39 | #define CHROM_LEVEL_FIX (LEVEL_FIX<<4) // 128 |
13e00528 | 40 | |
9f45d04d MN |
41 | // Experimental vertical filters |
42 | #define V_RK1_FILTER 0x0100 // 256 | |
43 | #define V_X1_FILTER 0x0200 // 512 | |
13e00528 | 44 | |
9f45d04d MN |
45 | // Experimental horizontal filters |
46 | #define H_RK1_FILTER 0x1000 // 4096 | |
47 | #define H_X1_FILTER 0x2000 // 8192 | |
d5a1a995 | 48 | |
e939e1c3 | 49 | #define GET_PP_QUALITY_MAX 6 |
13e00528 | 50 | |
e939e1c3 A |
51 | //#define TIMEING |
52 | //#define MORE_TIMEING | |
3057fa66 A |
53 | |
54 | #define QP_STORE_T int | |
55 | ||
67b4cf18 | 56 | //#ifdef __cplusplus |
3057fa66 A |
57 | //#include <inttypes.h> |
58 | ||
9f3328bc A |
59 | //void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, |
60 | // QP_STORE_T QPs[], int QPStride, int isColor, int mode); | |
67b4cf18 | 61 | //#endif |
3057fa66 | 62 | |
67b4cf18 MN |
63 | //#ifdef __cplusplus |
64 | //extern "C" | |
65 | //{ | |
66 | //#endif | |
e939e1c3 | 67 | |
3057fa66 A |
68 | void postprocess(unsigned char * src[], int src_stride, |
69 | unsigned char * dst[], int dst_stride, | |
70 | int horizontal_size, int vertical_size, | |
9f3328bc | 71 | QP_STORE_T *QP_store, int QP_stride, int mode); |
e939e1c3 | 72 | |
9f3328bc | 73 | int getPpModeForQuality(int quality); |
e939e1c3 | 74 | |
67b4cf18 MN |
75 | //#ifdef __cplusplus |
76 | //} | |
77 | //#endif | |
3057fa66 | 78 | |
3057fa66 | 79 | #endif |