some more segfault fixes
[mplayer.git] / libmpdvdkit2 / dvd_reader.h
blob75f71827473bfddee9209d8b744a05928d377fdc
1 #ifndef DVD_READER_H_INCLUDED
2 #define DVD_READER_H_INCLUDED
4 /*
5 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>,
6 * HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <sys/types.h>
25 /**
26 * The length of one Logical Block of a DVD Video.
28 #define DVD_VIDEO_LB_LEN 2048
30 /**
31 * Maximum length of filenames for UDF.
33 #define MAX_UDF_FILE_NAME_LEN 2048
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
39 typedef struct dvd_reader_s dvd_reader_t;
40 typedef struct dvd_file_s dvd_file_t;
42 /**
43 * dvd = DVDOpen(path);
45 * Opens a block device of a DVD-ROM file, or an image file, or a directory
46 * name for a mounted DVD or HD copy of a DVD. Returns 0 if we can't get any
47 * of those methods to work.
49 * If the given file is a block device, or is the mountpoint for a block
50 * device, then that device is used for CSS authentication using libdvdcss.
51 * If no device is available, then no CSS authentication is performed,
52 * and we hope that the image is decrypted.
54 * If the path given is a directory, then the files in that directory may be in
55 * any one of these formats:
57 * path/VIDEO_TS/VTS_01_1.VOB
58 * path/video_ts/vts_01_1.vob
59 * path/VTS_01_1.VOB
60 * path/vts_01_1.vob
62 dvd_reader_t *DVDOpen( const char * );
64 /**
65 * DVDClose(dvd);
67 * Closes and cleans up the DVD reader object. You must close all open files
68 * before calling this function.
70 void DVDClose( dvd_reader_t * );
72 /**
73 * INFO_FILE : VIDEO_TS.IFO (manager)
74 * VTS_XX_0.IFO (title)
76 * INFO_BACKUP_FILE: VIDEO_TS.BUP (manager)
77 * VTS_XX_0.BUP (title)
79 * MENU_VOBS : VIDEO_TS.VOB (manager)
80 * VTS_XX_0.VOB (title)
82 * TITLE_VOBS : VTS_XX_[1-9].VOB (title)
83 * All files in the title set are opened and
84 * read as a single file.
86 typedef enum {
87 DVD_READ_INFO_FILE,
88 DVD_READ_INFO_BACKUP_FILE,
89 DVD_READ_MENU_VOBS,
90 DVD_READ_TITLE_VOBS
91 } dvd_read_domain_t;
93 /**
94 * dvd_file = DVDOpenFile(dvd, titlenum, domain);
96 * Opens a file on the DVD given the title number and domain. If the title
97 * number is 0, the video manager information is opened
98 * (VIDEO_TS.[IFO,BUP,VOB]). Returns a file structure which may be used for
99 * reads, or 0 if the file was not found.
101 dvd_file_t *DVDOpenFile( dvd_reader_t *, int,
102 dvd_read_domain_t );
105 * DVDCloseFile(dvd_file);
107 * Closes a file and frees the associated structure.
109 void DVDCloseFile( dvd_file_t * );
112 * blocks_read = DVDReadBlocks(dvd_file, offset, block_count, data);
114 * Reads block_count number of blocks from the file at the given block offset.
115 * Returns number of blocks read on success, -1 on error. This call is only
116 * for reading VOB data, and should not be used when reading the IFO files.
117 * When reading from an encrypted drive, blocks are decrypted using libdvdcss
118 * where required.
120 ssize_t DVDReadBlocks( dvd_file_t *, int, size_t, unsigned char * );
123 * offset_set = DVDFileSeek(dvd_file, seek_offset);
125 * Seek to the given position in the file. Returns the resulting position in
126 * bytes from the beginning of the file. The seek position is only used for
127 * byte reads from the file, the block read call always reads from the given
128 * offset.
130 int DVDFileSeek( dvd_file_t *, int );
133 * bytes_read = DVDReadBytes(dvd_file, data, bytes);
135 * Reads the given number of bytes from the file. This call can only be used
136 * on the information files, and may not be used for reading from a VOB. This
137 * reads from and increments the currrent seek position for the file.
139 ssize_t DVDReadBytes( dvd_file_t *, void *, size_t );
142 * blocks = DVDFileSize(dvd_file);
144 * Returns the file size in blocks.
146 ssize_t DVDFileSize( dvd_file_t * );
148 #ifdef __cplusplus
150 #endif
151 #endif /* DVD_READER_H_INCLUDED */