7029
|
1 #ifndef NAV_PRINT_H_INCLUDED
|
|
2 #define NAV_PRINT_H_INCLUDED
|
|
3
|
|
4 /*
|
15874
|
5 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>,
|
|
6 * H�kan Hjort <d95hjort@dtek.chalmers.se>
|
7029
|
7 *
|
14938
|
8 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff.
|
|
9 * detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
|
|
10 * $Id$
|
|
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 (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
|
7033
|
27 #include "nav_types.h"
|
7029
|
28
|
15874
|
29 /**
|
|
30 * Pretty printing of the NAV packets, PCI and DSI structs.
|
|
31 */
|
|
32
|
7029
|
33 #ifdef __cplusplus
|
|
34 extern "C" {
|
|
35 #endif
|
|
36
|
|
37 /**
|
|
38 * Prints information contained in the PCI to stdout.
|
15874
|
39 *
|
|
40 * @param pci Pointer to the PCI data structure to be printed.
|
7029
|
41 */
|
|
42 void navPrint_PCI(pci_t *);
|
|
43
|
|
44 /**
|
|
45 * Prints information contained in the DSI to stdout.
|
15874
|
46 *
|
|
47 * @param dsi Pointer to the DSI data structure to be printed.
|
7029
|
48 */
|
|
49 void navPrint_DSI(dsi_t *);
|
|
50
|
|
51 #ifdef __cplusplus
|
|
52 };
|
|
53 #endif
|
|
54 #endif /* NAV_PRINT_H_INCLUDED */
|