comparison libdvdread/nav_print.h @ 20615:1a4fcea7ab53

libmpdvdkit2 --> libdvdread, it just contains libdvdread now.
author diego
date Fri, 03 Nov 2006 13:48:52 +0000
parents libmpdvdkit2/nav_print.h@0783dd397f74
children
comparison
equal deleted inserted replaced
20614:d56caf59d253 20615:1a4fcea7ab53
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 */