summaryrefslogtreecommitdiff
path: root/src/video_out/deinterlace.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-27 16:12:21 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-27 16:12:21 +0000
commit632d85bad131630c15c48e8216d4bcc016dfbb4e (patch)
treec8a21d0eafc2cc766a7e64216a231ef3aafed244 /src/video_out/deinterlace.h
parentaef7985b9484bdb81ee2b1149747959aabb9ddb8 (diff)
downloadxine-lib-632d85bad131630c15c48e8216d4bcc016dfbb4e.tar.gz
xine-lib-632d85bad131630c15c48e8216d4bcc016dfbb4e.tar.bz2
- new dirty and cheap deinterlace method: we give half of the lines to xv
driver and let it scale for us - xine_list_demux_plugins update CVS patchset: 894 CVS date: 2001/10/27 16:12:21
Diffstat (limited to 'src/video_out/deinterlace.h')
-rw-r--r--src/video_out/deinterlace.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/video_out/deinterlace.h b/src/video_out/deinterlace.h
index 833401259..04153d742 100644
--- a/src/video_out/deinterlace.h
+++ b/src/video_out/deinterlace.h
@@ -32,10 +32,11 @@
void deinterlace_yuv( uint8_t *pdst, uint8_t *psrc[],
int width, int height, int method );
-#define DEINTERLACE_NONE 0
-#define DEINTERLACE_BOB 1
-#define DEINTERLACE_WEAVE 2
-#define DEINTERLACE_GREEDY 3
-#define DEINTERLACE_ONEFIELD 4
+#define DEINTERLACE_NONE 0
+#define DEINTERLACE_BOB 1
+#define DEINTERLACE_WEAVE 2
+#define DEINTERLACE_GREEDY 3
+#define DEINTERLACE_ONEFIELD 4
+#define DEINTERLACE_ONEFIELDXV 5
#endif