summaryrefslogtreecommitdiff
path: root/src/video_out/deinterlace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_out/deinterlace.h')
-rw-r--r--src/video_out/deinterlace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/deinterlace.h b/src/video_out/deinterlace.h
index fc9e69bd4..a4a3d22ae 100644
--- a/src/video_out/deinterlace.h
+++ b/src/video_out/deinterlace.h
@@ -29,11 +29,11 @@
#include "video_out.h"
-void deinterlace_yuv( uint8_t *pdst, uint8_t *psrc,
+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
#endif