summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-07 11:38:11 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-07 11:38:11 +0000
commit4e0801479054c5e0c68c5937871f862afb9ee8b7 (patch)
treef7a39f6de45a0dae42c09db5121452513189b755 /libvo
parentb7391dde399cd8a9557b7939a6965219ab4d3df2 (diff)
downloadmpv-4e0801479054c5e0c68c5937871f862afb9ee8b7.tar.bz2
mpv-4e0801479054c5e0c68c5937871f862afb9ee8b7.tar.xz
remove duplicated code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27008 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vosub_vidix.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libvo/vosub_vidix.c b/libvo/vosub_vidix.c
index 6451bb5806..52e318720d 100644
--- a/libvo/vosub_vidix.c
+++ b/libvo/vosub_vidix.c
@@ -644,15 +644,10 @@ int vidix_preinit(const char *drvname,vo_functions_t *server)
mp_msg(MSGT_VO,MSGL_ERR, MSGTR_LIBVO_SUB_VIDIX_YouHaveWrongVersionOfVidixLibrary);
return -1;
}
-#ifndef __MINGW32__
- vidix_handler = vdlOpen(drvname ? drvname[0] == ':' ? &drvname[1] : drvname[0] ? drvname : NULL : NULL,
- TYPE_OUTPUT,
- verbose);
-#else
+
vidix_handler = vdlOpen(drvname ? drvname[0] == ':' ? &drvname[1] : drvname[0] ? drvname : NULL : NULL,
TYPE_OUTPUT,
verbose);
-#endif
if(vidix_handler == NULL)
{