mirror of
https://github.com/mpv-player/mpv
synced 2025-02-20 23:07:02 +00:00
mingw port
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11240 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ba171b8809
commit
c5065685a8
@ -700,10 +700,18 @@ int vidix_preinit(const char *drvname,void *server)
|
||||
printf("vosub_vidix: You have wrong version of VIDIX library\n");
|
||||
return -1;
|
||||
}
|
||||
#ifndef __MINGW32__
|
||||
vidix_handler = vdlOpen(MPLAYER_LIBDIR "/mplayer/vidix/",
|
||||
drvname ? drvname[0] == ':' ? &drvname[1] : drvname[0] ? drvname : NULL : NULL,
|
||||
TYPE_OUTPUT,
|
||||
verbose);
|
||||
#else
|
||||
vidix_handler = vdlOpen(get_path("vidix/"),
|
||||
drvname ? drvname[0] == ':' ? &drvname[1] : drvname[0] ? drvname : NULL : NULL,
|
||||
TYPE_OUTPUT,
|
||||
verbose);
|
||||
#endif
|
||||
|
||||
if(vidix_handler == NULL)
|
||||
{
|
||||
printf("vosub_vidix: Couldn't find working VIDIX driver\n");
|
||||
|
Loading…
Reference in New Issue
Block a user