diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-09-29 18:30:37 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-09-29 18:30:37 +0000 |
commit | 9c822094404792a27b55c102e76cc5a532f92919 (patch) | |
tree | 20dc21424e9824f7009e6e041df269ff7c083d0f | |
parent | 656bdc3af76a3b0e90ebe68ae86f61fb6a4f669a (diff) | |
download | xine-lib-9c822094404792a27b55c102e76cc5a532f92919.tar.gz xine-lib-9c822094404792a27b55c102e76cc5a532f92919.tar.bz2 |
disable vo deinterlace when port is closed
CVS patchset: 7009
CVS date: 2004/09/29 18:30:37
-rw-r--r-- | src/post/deinterlace/xine_plugin.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c index 415cb1168..1162a9058 100644 --- a/src/post/deinterlace/xine_plugin.c +++ b/src/post/deinterlace/xine_plugin.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: xine_plugin.c,v 1.36 2004/09/29 15:10:03 miguelfreitas Exp $ + * $Id: xine_plugin.c,v 1.37 2004/09/29 18:30:37 miguelfreitas Exp $ * * advanced video deinterlacer plugin * Jun/2003 by Miguel Freitas @@ -490,6 +490,9 @@ static void deinterlace_close(xine_video_port_t *port_gen, xine_stream_t *stream port->stream = NULL; _flush_frames(this); + port->original_port->set_property(port->original_port, + XINE_PARAM_VO_DEINTERLACE, + 0); port->original_port->close(port->original_port, stream); _x_post_dec_usage(port); } |