annotate postproc/postprocess.h @ 2169:a284336bfecf

final changes to convert to C
author michael
date Thu, 11 Oct 2001 23:28:58 +0000
parents 21a8f158d19f
children 2d8d14b882cc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1 /*
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2 Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at)
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
6 the Free Software Foundation; either version 2 of the License, or
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
7 (at your option) any later version.
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
8
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
12 GNU General Public License for more details.
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
13
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
15 along with this program; if not, write to the Free Software
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
17 */
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
18
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
19
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
20 #ifndef POSTPROCESS_H
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
21 #define POSTPROCESS_H
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
22
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
23 #define BLOCK_SIZE 8
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
24 #define TEMP_STRIDE 8
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
25
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
26 #define V_DEBLOCK 0x01
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
27 #define H_DEBLOCK 0x02
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
28 #define DERING 0x04
2168
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
29 #define LEVEL_FIX 0x08 /* Brightness & Contrast */
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
30
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
31 #define LUM_V_DEBLOCK V_DEBLOCK
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
32 #define LUM_H_DEBLOCK H_DEBLOCK
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
33 #define CHROM_V_DEBLOCK (V_DEBLOCK<<4)
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
34 #define CHROM_H_DEBLOCK (H_DEBLOCK<<4)
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
35 #define LUM_DERING DERING
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
36 #define CHROM_DERING (DERING<<4)
2168
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
37 #define LUM_LEVEL_FIX LEVEL_FIX
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
38 //not supported currently
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
39 #define CHROM_LEVEL_FIX (LEVEL_FIX<<4)
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
40
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
41 // Experimental stuff
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
42 #define RK_FILTER 0x0100
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
43 #define LUM_V_RK_FILTER RK_FILTER
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
44 #define CHROM_V_RK_FILTER (RK_FILTER<<4)
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
45
2168
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
46 #define X1_FILTER 0x0200
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
47 #define LUM_V_X1_FILTER X1_FILTER
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
48 #define CHROM_V_X1_FILTER (X1_FILTER<<4)
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
49
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
50
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
51 #define TIMEING
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
52 #define MORE_TIMEING
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
53
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
54 #define MIN(a,b) ((a) > (b) ? (b) : (a))
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
55 #define MAX(a,b) ((a) < (b) ? (b) : (a))
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
56 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
57 #define SIGN(a) ((a) > 0 ? 1 : -1)
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
58
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
59 #define QP_STORE_T int
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
60
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
61 #ifdef HAVE_MMX2
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
62 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
63 #elif defined (HAVE_3DNOW)
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
64 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
65 #endif
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
66
2169
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
67 //#ifdef __cplusplus
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
68 //#include <inttypes.h>
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
69
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
70 void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
2168
21a8f158d19f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 2159
diff changeset
71 QP_STORE_T QPs[], int QPStride, int isColor, int mode);
2169
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
72 //#endif
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
73
2169
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
74 //#ifdef __cplusplus
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
75 //extern "C"
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
76 //{
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
77 //#endif
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
78 void postprocess(unsigned char * src[], int src_stride,
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
79 unsigned char * dst[], int dst_stride,
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
80 int horizontal_size, int vertical_size,
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
81 QP_STORE_T *QP_store, int QP_stride,
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
82 int mode);
2159
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
83
795f3d022657 fixed a bug in the horizontal default filter
arpi
parents: 2158
diff changeset
84 int getModeForQuality(int quality);
2169
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
85 //#ifdef __cplusplus
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
86 //}
a284336bfecf final changes to convert to C
michael
parents: 2168
diff changeset
87 //#endif
2158
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
88
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
89
508468a75be0 new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
90 #endif