diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-03-06 09:55:35 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-03-06 09:55:35 +0000 |
commit | 2cd0a3433ae8f07e7211d2c7b34e17a27de49a26 (patch) | |
tree | b712c128d1e2a92e19e9049d2d5d6bf5ebcc35dd | |
parent | 64965620fd670bf5b2c4c5fde4da797483fefbe5 (diff) | |
download | xine-lib-2cd0a3433ae8f07e7211d2c7b34e17a27de49a26.tar.gz xine-lib-2cd0a3433ae8f07e7211d2c7b34e17a27de49a26.tar.bz2 |
Fixed onefield_xv deinterlace method.
CVS patchset: 7431
CVS date: 2005/03/06 09:55:35
-rw-r--r-- | src/video_out/video_out_xv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 74117e517..0c1a15970 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.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_xv.c,v 1.209 2004/12/20 23:09:20 hadess Exp $ + * $Id: video_out_xv.c,v 1.210 2005/03/06 09:55:35 tmattern Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -773,7 +773,8 @@ static void xv_display_frame (vo_driver_t *this_gen, vo_frame_t *frame_gen) { if (this->deinterlace_enabled && this->deinterlace_method && frame->format == XINE_IMGFMT_YV12 - && deinterlace_yuv_supported( this->deinterlace_method ) == 1) + && (deinterlace_yuv_supported( this->deinterlace_method ) == 1 + || this->deinterlace_method == DEINTERLACE_ONEFIELDXV)) xv_deinterlace_frame (this); /* |