summaryrefslogtreecommitdiff
path: root/src/post/deinterlace/deinterlace.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-09 02:57:05 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-09 02:57:05 +0000
commit575527352ef6ca07f7f752838ccccf2f0171314c (patch)
treecaeb6d23d13112e6bba8610f0a85c23f2a6220bd /src/post/deinterlace/deinterlace.h
parentf388b7ac7c20497a25693ef9f17c83ab60733c4d (diff)
downloadxine-lib-575527352ef6ca07f7f752838ccccf2f0171314c.tar.gz
xine-lib-575527352ef6ca07f7f752838ccccf2f0171314c.tar.bz2
tvtime deinterlacing algorithms assumed top_field_first=1
top_field_first=0 (aka bottom_field_first) should now work as expected CVS patchset: 6356 CVS date: 2004/04/09 02:57:05
Diffstat (limited to 'src/post/deinterlace/deinterlace.h')
-rw-r--r--src/post/deinterlace/deinterlace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/deinterlace/deinterlace.h b/src/post/deinterlace/deinterlace.h
index 1cc7bf9b1..6475aaefd 100644
--- a/src/post/deinterlace/deinterlace.h
+++ b/src/post/deinterlace/deinterlace.h
@@ -121,7 +121,7 @@ struct deinterlace_frame_data_s
typedef void (*deinterlace_frame_t)( uint8_t *output, int outstride,
deinterlace_frame_data_t *data,
- int bottom_field, int width, int height );
+ int bottom_field, int second_field, int width, int height );
/**