mirror of
https://github.com/mpv-player/mpv
synced 2024-11-18 21:16:10 +01:00
mpdvdkit now accepts X:\ as a device name, as well as X:
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13012 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
eabfd291c4
commit
77e529d9f7
@ -134,8 +134,11 @@ int _dvdcss_open ( dvdcss_t dvdcss )
|
||||
_dvdcss_debug( dvdcss, psz_debug );
|
||||
|
||||
#if defined( WIN32 )
|
||||
/* If device is not "X:", we are actually opening a file. */
|
||||
dvdcss->b_file = !psz_device[0] || psz_device[1] != ':' || psz_device[2];
|
||||
dvdcss->b_file = 1;
|
||||
/* If device is "X:" or "X:\", we are not actually opening a file. */
|
||||
if (psz_device[0] && psz_device[1] == ':' &&
|
||||
(!psz_device[2] || (psz_device[2] == '\\' && !psz_device[3])))
|
||||
dvdcss->b_file = 0;
|
||||
|
||||
/* Initialize readv temporary buffer */
|
||||
dvdcss->p_readv_buffer = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user