Mercurial > libpostproc.hg
annotate postprocess_internal.h @ 26:300e4c8b39ab libpostproc
Move sign macro to libavutil.
| author | diego |
|---|---|
| date | Tue, 10 Oct 2006 07:49:10 +0000 |
| parents | da3bfee1fa67 |
| children | 2e855f3f4e0b |
| rev | line source |
|---|---|
| 0 | 1 /* |
|
22
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
2 * Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
3 * |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
4 * This file is part of FFmpeg. |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
5 * |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or modify |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
7 * it under the terms of the GNU General Public License as published by |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
8 * the Free Software Foundation; either version 2 of the License, or |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
9 * (at your option) any later version. |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
10 * |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
14 * GNU General Public License for more details. |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
15 * |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
16 * You should have received a copy of the GNU General Public License |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
17 * along with FFmpeg; if not, write to the Free Software |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
da3bfee1fa67
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
16
diff
changeset
|
19 */ |
| 0 | 20 |
| 21 /** | |
| 22 * @file postprocess_internal.h | |
| 23 * internal api header. | |
| 24 */ | |
| 25 | |
| 16 | 26 #include "avutil.h" |
| 27 | |
| 0 | 28 #define V_DEBLOCK 0x01 |
| 29 #define H_DEBLOCK 0x02 | |
| 30 #define DERING 0x04 | |
| 31 #define LEVEL_FIX 0x08 ///< Brightness & Contrast | |
| 32 | |
| 33 #define LUM_V_DEBLOCK V_DEBLOCK // 1 | |
| 34 #define LUM_H_DEBLOCK H_DEBLOCK // 2 | |
| 35 #define CHROM_V_DEBLOCK (V_DEBLOCK<<4) // 16 | |
| 36 #define CHROM_H_DEBLOCK (H_DEBLOCK<<4) // 32 | |
| 37 #define LUM_DERING DERING // 4 | |
| 38 #define CHROM_DERING (DERING<<4) // 64 | |
| 39 #define LUM_LEVEL_FIX LEVEL_FIX // 8 | |
| 40 #define CHROM_LEVEL_FIX (LEVEL_FIX<<4) // 128 (not implemented yet) | |
| 41 | |
| 42 // Experimental vertical filters | |
| 43 #define V_X1_FILTER 0x0200 // 512 | |
| 44 #define V_A_DEBLOCK 0x0400 | |
| 45 | |
| 46 // Experimental horizontal filters | |
| 47 #define H_X1_FILTER 0x2000 // 8192 | |
| 48 #define H_A_DEBLOCK 0x4000 | |
| 49 | |
| 50 /// select between full y range (255-0) or standart one (234-16) | |
| 51 #define FULL_Y_RANGE 0x8000 // 32768 | |
| 52 | |
| 53 //Deinterlacing Filters | |
| 54 #define LINEAR_IPOL_DEINT_FILTER 0x10000 // 65536 | |
| 55 #define LINEAR_BLEND_DEINT_FILTER 0x20000 // 131072 | |
| 56 #define CUBIC_BLEND_DEINT_FILTER 0x8000 // (not implemented yet) | |
| 57 #define CUBIC_IPOL_DEINT_FILTER 0x40000 // 262144 | |
| 58 #define MEDIAN_DEINT_FILTER 0x80000 // 524288 | |
| 59 #define FFMPEG_DEINT_FILTER 0x400000 | |
| 60 #define LOWPASS5_DEINT_FILTER 0x800000 | |
| 61 | |
| 62 #define TEMP_NOISE_FILTER 0x100000 | |
| 63 #define FORCE_QUANT 0x200000 | |
| 64 | |
|
7
7ebcf3d8fce1
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
5
diff
changeset
|
65 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC) |
|
7ebcf3d8fce1
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
5
diff
changeset
|
66 # define PIC |
|
7ebcf3d8fce1
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
5
diff
changeset
|
67 #endif |
|
7ebcf3d8fce1
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
5
diff
changeset
|
68 |
| 0 | 69 //use if u want a faster postprocessing code |
| 70 //cant differentiate between chroma & luma filters (both on or both off) | |
| 71 //obviosly the -pp option at the commandline has no effect except turning the here selected | |
| 72 //filters on | |
| 73 //#define COMPILE_TIME_MODE 0x77 | |
| 74 | |
| 75 #if 1 | |
| 76 static inline int CLIP(int a){ | |
| 77 if(a&256) return ((a)>>31)^(-1); | |
| 78 else return a; | |
| 79 } | |
| 80 //#define CLIP(a) (((a)&256) ? ((a)>>31)^(-1) : (a)) | |
| 81 #elif 0 | |
| 82 #define CLIP(a) clip_tab[a] | |
| 83 #else | |
| 84 #define CLIP(a) (a) | |
| 85 #endif | |
| 86 /** | |
| 87 * Postprocessng filter. | |
| 88 */ | |
| 89 struct PPFilter{ | |
|
5
a4a3c84fe72f
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
0
diff
changeset
|
90 const char *shortName; |
|
a4a3c84fe72f
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
0
diff
changeset
|
91 const char *longName; |
| 0 | 92 int chromDefault; ///< is chrominance filtering on by default if this filter is manually activated |
| 93 int minLumQuality; ///< minimum quality to turn luminance filtering on | |
| 94 int minChromQuality; ///< minimum quality to turn chrominance filtering on | |
| 95 int mask; ///< Bitmask to turn this filter on | |
| 96 }; | |
| 97 | |
| 98 /** | |
| 99 * Postprocessng mode. | |
| 100 */ | |
| 101 typedef struct PPMode{ | |
| 102 int lumMode; ///< acivates filters for luminance | |
| 103 int chromMode; ///< acivates filters for chrominance | |
| 104 int error; ///< non zero on error | |
| 105 | |
| 106 int minAllowedY; ///< for brigtness correction | |
| 107 int maxAllowedY; ///< for brihtness correction | |
| 108 float maxClippedThreshold; ///< amount of "black" u r willing to loose to get a brightness corrected picture | |
| 109 | |
| 110 int maxTmpNoise[3]; ///< for Temporal Noise Reducing filter (Maximal sum of abs differences) | |
| 111 | |
| 112 int baseDcDiff; | |
| 113 int flatnessThreshold; | |
| 114 | |
| 115 int forcedQuant; ///< quantizer if FORCE_QUANT is used | |
| 116 } PPMode; | |
| 117 | |
| 118 /** | |
| 119 * postprocess context. | |
| 120 */ | |
| 121 typedef struct PPContext{ | |
| 122 uint8_t *tempBlocks; ///<used for the horizontal code | |
| 123 | |
| 124 /** | |
| 125 * luma histogram. | |
| 126 * we need 64bit here otherwise we'll going to have a problem | |
| 127 * after watching a black picture for 5 hours | |
| 128 */ | |
| 129 uint64_t *yHistogram; | |
| 130 | |
| 16 | 131 DECLARE_ALIGNED(8, uint64_t, packedYOffset); |
| 132 DECLARE_ALIGNED(8, uint64_t, packedYScale); | |
| 0 | 133 |
| 134 /** Temporal noise reducing buffers */ | |
| 135 uint8_t *tempBlured[3]; | |
| 136 int32_t *tempBluredPast[3]; | |
| 137 | |
| 138 /** Temporary buffers for handling the last row(s) */ | |
| 139 uint8_t *tempDst; | |
| 140 uint8_t *tempSrc; | |
| 141 | |
| 142 uint8_t *deintTemp; | |
| 143 | |
| 16 | 144 DECLARE_ALIGNED(8, uint64_t, pQPb); |
| 145 DECLARE_ALIGNED(8, uint64_t, pQPb2); | |
| 0 | 146 |
| 16 | 147 DECLARE_ALIGNED(8, uint64_t, mmxDcOffset[64]); |
| 148 DECLARE_ALIGNED(8, uint64_t, mmxDcThreshold[64]); | |
| 0 | 149 |
| 150 QP_STORE_T *stdQPTable; ///< used to fix MPEG2 style qscale | |
| 151 QP_STORE_T *nonBQPTable; | |
| 152 QP_STORE_T *forcedQPTable; | |
| 153 | |
| 154 int QP; | |
| 155 int nonBQP; | |
| 156 | |
| 157 int frameNum; | |
| 158 | |
| 159 int cpuCaps; | |
| 160 | |
| 161 int qpStride; ///<size of qp buffers (needed to realloc them if needed) | |
| 162 int stride; ///<size of some buffers (needed to realloc them if needed) | |
| 163 | |
| 164 int hChromaSubSample; | |
| 165 int vChromaSubSample; | |
| 166 | |
| 167 PPMode ppMode; | |
| 168 } PPContext; | |
| 169 | |
| 170 | |
| 171 static inline void linecpy(void *dest, void *src, int lines, int stride) | |
| 172 { | |
| 173 if (stride > 0) { | |
| 174 memcpy(dest, src, lines*stride); | |
| 175 } else { | |
| 176 memcpy(dest+(lines-1)*stride, src+(lines-1)*stride, -lines*stride); | |
| 177 } | |
| 178 } |
