summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-20 13:40:20 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-10-20 13:40:20 +0000
commite3eb18aa6868ad17f01cfffafb001a95aa1ffb71 (patch)
treecf8d27bb913f4b4ed26d2f8a3411853618b70a98
parente4c02e5922decf49fdc44f2503535bf5b8671430 (diff)
downloadxine-lib-e3eb18aa6868ad17f01cfffafb001a95aa1ffb71.tar.gz
xine-lib-e3eb18aa6868ad17f01cfffafb001a95aa1ffb71.tar.bz2
remove soft deinterlace property (not used anymore)
CVS patchset: 840 CVS date: 2001/10/20 13:40:20
-rw-r--r--src/video_out/video_out_xshm.c5
-rw-r--r--src/xine-engine/video_out.h5
2 files changed, 3 insertions, 7 deletions
diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c
index 401f84aaf..c46c8d75b 100644
--- a/src/video_out/video_out_xshm.c
+++ b/src/video_out/video_out_xshm.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_xshm.c,v 1.46 2001/10/14 23:19:59 f1rmb Exp $
+ * $Id: video_out_xshm.c,v 1.47 2001/10/20 13:40:20 miguelfreitas Exp $
*
* video_out_xshm.c, X11 shared memory extension interface for xine
*
@@ -873,9 +873,6 @@ static int xshm_set_property (vo_driver_t *this_gen,
this->gui_changed |= GUI_ASPECT_CHANGED;
printf("video_out_xshm: aspect ratio changed to %s\n",
aspect_ratio_name(value));
- } else if ( property == VO_PROP_SOFT_DEINTERLACE) {
- if( value )
- printf("video_out_xshm: software deinterlace not supported.\n");
} else {
printf ("video_out_xshm: tried to set unsupported property %d\n", property);
}
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h
index 4e8bc1bee..5e9e9b8e4 100644
--- a/src/xine-engine/video_out.h
+++ b/src/xine-engine/video_out.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.h,v 1.23 2001/10/09 22:20:11 miguelfreitas Exp $
+ * $Id: video_out.h,v 1.24 2001/10/20 13:40:20 miguelfreitas Exp $
*
*
* xine version of video_out.h
@@ -171,8 +171,7 @@ struct vo_instance_s {
#define VO_PROP_CONTRAST 4
#define VO_PROP_BRIGHTNESS 5
#define VO_PROP_COLORKEY 6
-#define VO_PROP_SOFT_DEINTERLACE 7
-#define VO_NUM_PROPERTIES 8
+#define VO_NUM_PROPERTIES 7
/* number of recent frames to keep in memory
these frames are needed by some deinterlace algorithms