diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2001-10-19 13:41:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2001-10-19 13:41:38 +0000 |
commit | 658a85f26fd95031bcf2fc68e6a2420dcf4a5a7e (patch) | |
tree | fd5cdff21dd207e037728146e675b68d6b5694d8 /postproc/postprocess.h | |
parent | 0f25d72b3f00f18b55fb376a7a40001e3d98c0ea (diff) | |
download | ffmpeg-658a85f26fd95031bcf2fc68e6a2420dcf4a5a7e.tar.gz |
fixed a bug in the tmp buffer
fixed the color range for yuv
fixed the width %8!=0 bug (another 1% speed loss)
Originally committed as revision 2286 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/postprocess.h')
-rw-r--r-- | postproc/postprocess.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/postproc/postprocess.h b/postproc/postprocess.h index e7eb248512..20880a9874 100644 --- a/postproc/postprocess.h +++ b/postproc/postprocess.h @@ -46,6 +46,9 @@ #define H_RK1_FILTER 0x1000 // 4096 (not implemented yet) #define H_X1_FILTER 0x2000 // 8192 +// select between full y range (255-0) or standart one ( +#define FULL_Y_RANGE 0x8000 // 32768 + //Deinterlacing Filters #define LINEAR_IPOL_DEINT_FILTER 0x10000 // 65536 #define LINEAR_BLEND_DEINT_FILTER 0x20000 // 131072 |