comparison libpostproc/postprocess.h @ 111:8e4c5a16c9fc libavcodec

fixed the height%8!=0 bug simplified a few things removed last row variants of the deinterlace filters, they are not needed anymore added cubic interpolating deinterlacer
author michael
date Wed, 17 Oct 2001 20:42:07 +0000
parents bd163e13a0fb
children a2c063b6ecf9
comparison
equal deleted inserted replaced
110:e00e5d93457c 111:8e4c5a16c9fc
47 #define H_X1_FILTER 0x2000 // 8192 47 #define H_X1_FILTER 0x2000 // 8192
48 48
49 //Deinterlacing Filters 49 //Deinterlacing Filters
50 #define LINEAR_IPOL_DEINT_FILTER 0x10000 // 65536 50 #define LINEAR_IPOL_DEINT_FILTER 0x10000 // 65536
51 #define LINEAR_BLEND_DEINT_FILTER 0x20000 // 131072 51 #define LINEAR_BLEND_DEINT_FILTER 0x20000 // 131072
52 //#define CUBIC_BLEND_DEINT_FILTER 0x8000 // (not implemented yet) 52 #define CUBIC_BLEND_DEINT_FILTER 0x8000 // (not implemented yet)
53 #define CUBIC_IPOL_DEINT_FILTER 0x40000 // 262144 (not implemented yet) 53 #define CUBIC_IPOL_DEINT_FILTER 0x40000 // 262144
54 #define MEDIAN_DEINT_FILTER 0x80000 // 524288 54 #define MEDIAN_DEINT_FILTER 0x80000 // 524288
55 55
56 56
57 #define GET_PP_QUALITY_MAX 6 57 #define GET_PP_QUALITY_MAX 6
58 58