Mercurial > libdvdread4.hg
annotate dvd_udf.h @ 26:0d82d0f30c98 src
cosmetics: Convert all tabs to spaces.
| author | diego |
|---|---|
| date | Tue, 23 Sep 2008 09:14:45 +0000 |
| parents | ac07d427fbc6 |
| children |
| rev | line source |
|---|---|
| 3 | 1 /* |
| 2 * This code is based on dvdudf by: | |
| 3 * Christian Wolff <scarabaeus@convergence.de>. | |
| 4 * | |
| 5 * Modifications by: | |
| 6 * Billy Biggs <vektor@dumbterm.net>. | |
| 22 | 7 * Björn Englund <d4bjorn@dtek.chalmers.se>. |
| 20 | 8 * |
| 3 | 9 * dvdudf: parse and read the UDF volume information of a DVD Video |
| 10 * Copyright (C) 1999 Christian Wolff for convergence integrated media | |
| 11 * GmbH The author can be reached at scarabaeus@convergence.de, the | |
| 12 * project's page is at http://linuxtv.org/dvd/ | |
| 20 | 13 * |
|
21
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
14 * This file is part of libdvdread. |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
15 * |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
16 * libdvdread is free software; you can redistribute it and/or modify |
| 3 | 17 * it under the terms of the GNU General Public License as published by |
|
21
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
18 * the Free Software Foundation; either version 2 of the License, or |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
19 * (at your option) any later version. |
| 20 | 20 * |
|
21
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
21 * libdvdread is distributed in the hope that it will be useful, |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
24 * GNU General Public License for more details. |
| 20 | 25 * |
|
21
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
26 * You should have received a copy of the GNU General Public License along |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
27 * with libdvdread; if not, write to the Free Software Foundation, Inc., |
|
4aa618ae094f
Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents:
20
diff
changeset
|
28 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 3 | 29 */ |
| 30 | |
| 23 | 31 #ifndef LIBDVDREAD_DVD_UDF_H |
| 32 #define LIBDVDREAD_DVD_UDF_H | |
| 33 | |
| 3 | 34 #include <inttypes.h> |
| 35 | |
| 36 #include "dvd_reader.h" | |
| 37 | |
| 38 #ifdef __cplusplus | |
| 39 extern "C" { | |
| 40 #endif | |
| 41 | |
| 42 /** | |
| 43 * Looks for a file on the UDF disc/imagefile and returns the block number | |
| 44 * where it begins, or 0 if it is not found. The filename should be an | |
| 45 * absolute pathname on the UDF filesystem, starting with '/'. For example, | |
| 46 * '/VIDEO_TS/VTS_01_1.IFO'. On success, filesize will be set to the size of | |
| 47 * the file in bytes. | |
| 48 */ | |
| 49 uint32_t UDFFindFile( dvd_reader_t *device, char *filename, uint32_t *size ); | |
| 50 | |
| 51 void FreeUDFCache(void *cache); | |
| 52 int UDFGetVolumeIdentifier(dvd_reader_t *device, | |
| 26 | 53 char *volid, unsigned int volid_size); |
| 3 | 54 int UDFGetVolumeSetIdentifier(dvd_reader_t *device, |
| 26 | 55 uint8_t *volsetid, unsigned int volsetid_size); |
| 3 | 56 void *GetUDFCacheHandle(dvd_reader_t *device); |
| 57 void SetUDFCacheHandle(dvd_reader_t *device, void *cache); | |
| 58 | |
| 59 #ifdef __cplusplus | |
| 60 }; | |
| 61 #endif | |
| 23 | 62 #endif /* LIBDVDREAD_DVD_UDF_H */ |
