postprocess.h 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
    Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at)

    This program 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 2 of the License, or
    (at your option) any later version.

    This program 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 program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

A
Arpi 已提交
19 20 21
// POSTPROCESS_H is defined by opendivx's postprocess.h
#ifndef NEWPOSTPROCESS_H
#define NEWPOSTPROCESS_H
22 23 24

#define BLOCK_SIZE 8
#define TEMP_STRIDE 8
25 26 27 28

#define V_DEBLOCK	0x01
#define H_DEBLOCK	0x02
#define DERING		0x04
29
#define LEVEL_FIX	0x08 /* Brightness & Contrast */
30

31 32 33 34 35 36 37
#define LUM_V_DEBLOCK	V_DEBLOCK		//   1
#define LUM_H_DEBLOCK	H_DEBLOCK		//   2
#define CHROM_V_DEBLOCK	(V_DEBLOCK<<4)		//  16
#define CHROM_H_DEBLOCK	(H_DEBLOCK<<4)		//  32
#define LUM_DERING	DERING			//   4
#define CHROM_DERING	(DERING<<4)		//  64
#define LUM_LEVEL_FIX	LEVEL_FIX		//   8
38
//not supported currently
39
#define CHROM_LEVEL_FIX	(LEVEL_FIX<<4)		// 128
40

41 42 43
// Experimental vertical filters
#define V_RK1_FILTER	0x0100			// 256
#define V_X1_FILTER	0x0200			// 512
44

45 46 47
// Experimental horizontal filters
#define H_RK1_FILTER	0x1000			// 4096
#define H_X1_FILTER	0x2000			// 8192
48

A
Arpi 已提交
49
#define GET_PP_QUALITY_MAX 6
50

A
Arpi 已提交
51 52
//#define TIMEING
//#define MORE_TIMEING
53 54 55

#define QP_STORE_T int

56
//#ifdef __cplusplus
57 58
//#include <inttypes.h>

A
Arpi 已提交
59 60
//void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
//	QP_STORE_T QPs[], int QPStride, int isColor, int mode);
61
//#endif
62

63 64 65 66
//#ifdef __cplusplus
//extern "C"
//{
//#endif
A
Arpi 已提交
67

68 69 70
void postprocess(unsigned char * src[], int src_stride,
                 unsigned char * dst[], int dst_stride,
                 int horizontal_size,   int vertical_size,
A
Arpi 已提交
71
                 QP_STORE_T *QP_store,  int QP_stride, int mode);
A
Arpi 已提交
72

A
Arpi 已提交
73
int getPpModeForQuality(int quality);
A
Arpi 已提交
74

75 76 77
//#ifdef __cplusplus
//}
//#endif
78 79

#endif