diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-02-18 02:05:06 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-02-18 02:05:06 +0000 |
commit | 86fb7993334c17d19567aec084bfc50d1d5579c5 (patch) | |
tree | 6f549e4e2fe033c9773540c074a965b8024707e1 /src/video_out/deinterlace.h | |
parent | 31c216d7c3195e7975040ceb5445f200db384c84 (diff) | |
download | xine-lib-86fb7993334c17d19567aec084bfc50d1d5579c5.tar.gz xine-lib-86fb7993334c17d19567aec084bfc50d1d5579c5.tar.bz2 |
new deinterlacing method (linear blend).
CVS patchset: 1504
CVS date: 2002/02/18 02:05:06
Diffstat (limited to 'src/video_out/deinterlace.h')
-rw-r--r-- | src/video_out/deinterlace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_out/deinterlace.h b/src/video_out/deinterlace.h index 04153d742..4381701f5 100644 --- a/src/video_out/deinterlace.h +++ b/src/video_out/deinterlace.h @@ -38,5 +38,8 @@ void deinterlace_yuv( uint8_t *pdst, uint8_t *psrc[], #define DEINTERLACE_GREEDY 3 #define DEINTERLACE_ONEFIELD 4 #define DEINTERLACE_ONEFIELDXV 5 +#define DEINTERLACE_LINEARBLEND 6 + +extern char *deinterlace_methods[]; #endif |