comparison dvdread/nav_print.h @ 20981:22cb9d5f1e21

Rename libdvdread to dvdread. We really only include only the dvdread subdirectory of libdvdread. This will also allow getting rid of some local modifications.
author diego
date Sat, 18 Nov 2006 00:33:01 +0000
parents libdvdread/nav_print.h@1a4fcea7ab53
children 4da452b25fd5
comparison
equal deleted inserted replaced
20980:70ca50bcc4a8 20981:22cb9d5f1e21
1 #ifndef NAV_PRINT_H_INCLUDED
2 #define NAV_PRINT_H_INCLUDED
3
4 /*
5 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>,
6 * Håkan Hjort <d95hjort@dtek.chalmers.se>
7 *
8 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff.
9 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
10 * $Id$
11 *
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 (at
15 * your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * 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
27 #include "nav_types.h"
28
29 /**
30 * Pretty printing of the NAV packets, PCI and DSI structs.
31 */
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 /**
38 * Prints information contained in the PCI to stdout.
39 *
40 * @param pci Pointer to the PCI data structure to be printed.
41 */
42 void navPrint_PCI(pci_t *);
43
44 /**
45 * Prints information contained in the DSI to stdout.
46 *
47 * @param dsi Pointer to the DSI data structure to be printed.
48 */
49 void navPrint_DSI(dsi_t *);
50
51 #ifdef __cplusplus
52 };
53 #endif
54 #endif /* NAV_PRINT_H_INCLUDED */