# HG changeset patch # User nick # Date 1013266429 0 # Node ID eb8ffbcd0b733a34ca791f21d88ca00ed6291289 # Parent 272b0a173417b136161a7f3346466372b1a59813 temporary solution to disable adaptive deinterlacing engine diff -r 272b0a173417 -r eb8ffbcd0b73 mplayer.c --- a/mplayer.c Sat Feb 09 14:44:09 2002 +0000 +++ b/mplayer.c Sat Feb 09 14:53:49 2002 +0000 @@ -118,6 +118,7 @@ Video accelerated architecture **************************************************************************/ vo_vaa_t vo_vaa; +extern int force_ni; //**************************************************************************// // Config file @@ -1399,7 +1400,13 @@ } init_video_vaa(); fflush(stdout); - + /* Temporary solution for disabling deinterlacing */ + if(vo_vaa.set_deint && force_ni) + { + vidix_deinterlace_t deint; + deint.flags = CFG_NON_INTERLACED; + vo_vaa.set_deint(&deint); + } //================== MAIN: ========================== main: if(!sh_video) osd_level = 0;