Mercurial > mplayer.hg
annotate libmpdvdkit2/ifo_print.h @ 17100:29760118597b
fix
mplayer.c:509: warning: implicit declaration of function 'free_osd_list'
author | rathann |
---|---|
date | Mon, 05 Dec 2005 01:34:13 +0000 |
parents | 483e955893b8 |
children | 0783dd397f74 |
rev | line source |
---|---|
7029 | 1 #ifndef IFO_PRINT_H_INCLUDED |
2 #define IFO_PRINT_H_INCLUDED | |
3 | |
4 /* | |
5 * Copyright (C) 2000, 2001 Björn Englund <d4bjorn@dtek.chalmers.se>, | |
6 * Håkan Hjort <d95hjort@dtek.chalmers.se> | |
7 * | |
14938
25df9508f9a8
Mark modified files as such to comply more closely with GPL ¡ø2a.
diego
parents:
7033
diff
changeset
|
8 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff. |
25df9508f9a8
Mark modified files as such to comply more closely with GPL ¡ø2a.
diego
parents:
7033
diff
changeset
|
9 * detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ |
25df9508f9a8
Mark modified files as such to comply more closely with GPL ¡ø2a.
diego
parents:
7033
diff
changeset
|
10 * $Id$ |
25df9508f9a8
Mark modified files as such to comply more closely with GPL ¡ø2a.
diego
parents:
7033
diff
changeset
|
11 * |
7029 | 12 * This program is free software; you can redistribute it and/or modify |
13 * it under the terms of the GNU General Public License as published by | |
14 * the Free Software Foundation; either version 2 of the License, or | |
15 * (at your option) any later version. | |
16 * | |
17 * This program is distributed in the hope that it will be useful, | |
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 * GNU General Public License for more details. | |
21 * | |
22 * You should have received a copy of the GNU General Public License | |
23 * along with this program; if not, write to the Free Software | |
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
25 */ | |
26 | |
7033 | 27 #include "ifo_types.h" |
28 #include "dvd_reader.h" | |
7029 | 29 |
30 #ifdef __cplusplus | |
31 extern "C" { | |
32 #endif | |
33 | |
34 /** | |
35 * This file provides example functions for printing information about the IFO | |
36 * file to stdout. | |
37 */ | |
38 | |
39 /** | |
40 * Print the complete parsing information for the given file. | |
41 */ | |
42 | |
43 /* ifoPrint(dvd, title); */ | |
44 void ifoPrint(dvd_reader_t *, int); | |
45 | |
46 void ifoPrint_VMGI_MAT(vmgi_mat_t *); | |
47 void ifoPrint_VTSI_MAT(vtsi_mat_t *); | |
48 | |
49 void ifoPrint_PTL_MAIT(ptl_mait_t *); | |
50 void ifoPrint_VTS_ATRT(vts_atrt_t *); | |
51 void ifoPrint_TT_SRPT(tt_srpt_t *); | |
52 void ifoPrint_VTS_PTT_SRPT(vts_ptt_srpt_t *); | |
53 void ifoPrint_PGC(pgc_t *); | |
54 void ifoPrint_PGCIT(pgcit_t *); | |
55 void ifoPrint_PGCI_UT(pgci_ut_t *); | |
15874 | 56 void ifoPrint_VTS_TMAPT(vts_tmapt_t *); |
7029 | 57 void ifoPrint_C_ADT(c_adt_t *); |
58 void ifoPrint_VOBU_ADMAP(vobu_admap_t *); | |
59 | |
60 #ifdef __cplusplus | |
61 }; | |
62 #endif | |
63 #endif /* IFO_PRINT_H_INCLUDED */ |