mirror of
https://github.com/mpv-player/mpv
synced 2025-01-20 14:20:55 +00:00
temporary solution to disable adaptive deinterlacing engine
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4611 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d0fa2231b3
commit
8fd226919d
@ -118,6 +118,7 @@ m_config_t* mconfig;
|
||||
Video accelerated architecture
|
||||
**************************************************************************/
|
||||
vo_vaa_t vo_vaa;
|
||||
extern int force_ni;
|
||||
|
||||
//**************************************************************************//
|
||||
// Config file
|
||||
@ -1399,7 +1400,13 @@ current_module="init_libvo";
|
||||
}
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user