Changeset 3f822b5c8c6fe82f6c99ac84421dadd77949e5b5

Show
Ignore:
Timestamp:
24/03/03 15:18:28 (6 years ago)
Author:
Derk-Jan Hartman <hartman@videolan.org>
git-committer:
Derk-Jan Hartman <hartman@videolan.org> 1048515508 +0000
git-parent:

[3ec27748b1d647d9bd228de4cfe5d49ee3c236e3]

git-author:
Derk-Jan Hartman <hartman@videolan.org> 1048515508 +0000
Message:

* modules/access/dvd*: changed some errors in warnings because the directory

might still be readable by the directory access module.

* added drag and drop support for directories.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/MacOSX/vlc.pbproj/project.pbxproj

    r65a3fa6 r3f822b5  
    122122            <key>CFBundleTypeName</key> 
    123123            <string>VOB File (DVD Video)</string> 
     124            <key>CFBundleTypeRole</key> 
     125            <string>Viewer</string> 
     126        </dict> 
     127        <dict> 
     128            <key>CFBundleTypeMIMETypes</key> 
     129            <array> 
     130                <string>fold</string> 
     131            </array> 
     132            <key>CFBundleTypeName</key> 
     133            <string>Folder</string> 
    124134            <key>CFBundleTypeRole</key> 
    125135            <string>Viewer</string> 
  • modules/access/dvdplay/access.c

    r1171979 r3f822b5  
    33 ***************************************************************************** 
    44 * Copyright (C) 2001 VideoLAN 
    5  * $Id: access.c,v 1.13 2003/03/11 23:56:53 gbazin Exp $ 
     5 * $Id: access.c,v 1.14 2003/03/24 14:18:28 hartman Exp $ 
    66 * 
    77 * Author: St�ane Borel <stef@via.ecp.fr> 
     
    108108    if( p_dvd->vmg == NULL ) 
    109109    { 
    110         msg_Err( p_input, "cannot open %s", psz_source ); 
     110        msg_Warn( p_input, "cannot open %s", psz_source ); 
    111111        free( psz_source ); 
    112112        free( p_dvd ); 
  • modules/access/dvdread/input.c

    r1171979 r3f822b5  
    77 ***************************************************************************** 
    88 * Copyright (C) 2001, 2003 VideoLAN 
    9  * $Id: input.c,v 1.17 2003/03/11 23:56:53 gbazin Exp $ 
     9 * $Id: input.c,v 1.18 2003/03/24 14:18:28 hartman Exp $ 
    1010 * 
    1111 * Author: St�ane Borel <stef@via.ecp.fr> 
     
    351351    if( ! ( p_dvd->p_vmg_file = ifoOpen( p_dvd->p_dvdread, 0 ) ) ) 
    352352    { 
    353         msg_Err( p_input, "cannot open VMG info" ); 
     353        msg_Warn( p_input, "cannot open VMG info" ); 
    354354        free( p_dvd ); 
    355355        return VLC_EGENERIC;