Mercurial > libavcodec.hg
diff libpostproc/postprocess.h @ 183:d310beb2d848 libavcodec
-npp fq:<quantizer>
force quantizer (for these lq movies which where reencoded at high bitrates)
(c) 2002
| author | michael |
|---|---|
| date | Thu, 03 Jan 2002 14:16:13 +0000 |
| parents | 3ccd74a91074 |
| children | 3ef1cc75d5f5 |
line wrap: on
line diff
--- a/libpostproc/postprocess.h Fri Dec 28 13:56:04 2001 +0000 +++ b/libpostproc/postprocess.h Thu Jan 03 14:16:13 2002 +0000 @@ -1,5 +1,5 @@ /* - Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at) + Copyright (C) 2001-2002 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 @@ -57,6 +57,7 @@ #define MEDIAN_DEINT_FILTER 0x80000 // 524288 #define TEMP_NOISE_FILTER 0x100000 +#define FORCE_QUANT 0x200000 #define GET_PP_QUALITY_MAX 6 @@ -87,6 +88,7 @@ int maxTmpNoise[3]; // for Temporal Noise Reducing filter (Maximal sum of abs differences) int maxDcDiff; // max abs diff between pixels to be considered flat + int forcedQuant; // quantizer if FORCE_QUANT is used }; struct PPFilter{
