Changeset 3f822b5c8c6fe82f6c99ac84421dadd77949e5b5
- 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
| r65a3fa6 |
r3f822b5 |
|
| 122 | 122 | <key>CFBundleTypeName</key> |
|---|
| 123 | 123 | <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> |
|---|
| 124 | 134 | <key>CFBundleTypeRole</key> |
|---|
| 125 | 135 | <string>Viewer</string> |
|---|
| r1171979 |
r3f822b5 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * 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 $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Author: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 108 | 108 | if( p_dvd->vmg == NULL ) |
|---|
| 109 | 109 | { |
|---|
| 110 | | msg_Err( p_input, "cannot open %s", psz_source ); |
|---|
| | 110 | msg_Warn( p_input, "cannot open %s", psz_source ); |
|---|
| 111 | 111 | free( psz_source ); |
|---|
| 112 | 112 | free( p_dvd ); |
|---|
| r1171979 |
r3f822b5 |
|
| 7 | 7 | ***************************************************************************** |
|---|
| 8 | 8 | * 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 $ |
|---|
| 10 | 10 | * |
|---|
| 11 | 11 | * Author: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 351 | 351 | if( ! ( p_dvd->p_vmg_file = ifoOpen( p_dvd->p_dvdread, 0 ) ) ) |
|---|
| 352 | 352 | { |
|---|
| 353 | | msg_Err( p_input, "cannot open VMG info" ); |
|---|
| | 353 | msg_Warn( p_input, "cannot open VMG info" ); |
|---|
| 354 | 354 | free( p_dvd ); |
|---|
| 355 | 355 | return VLC_EGENERIC; |
|---|