comparison libmpdvdkit2/nav_print.h @ 15874:483e955893b8

update libdvdread to v0.9.4
author aurel
date Thu, 30 Jun 2005 22:48:26 +0000
parents 25df9508f9a8
children 0783dd397f74
comparison
equal deleted inserted replaced
15873:276da0bb6207 15874:483e955893b8
1 #ifndef NAV_PRINT_H_INCLUDED 1 #ifndef NAV_PRINT_H_INCLUDED
2 #define NAV_PRINT_H_INCLUDED 2 #define NAV_PRINT_H_INCLUDED
3 3
4 /* 4 /*
5 * Copyright (C) 2001 Billy Biggs <vektor@dumbterm.net>, 5 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>,
6 * Håkan Hjort <d95hjort@dtek.chalmers.se> 6 * Håkan Hjort <d95hjort@dtek.chalmers.se>
7 * 7 *
8 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff. 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/ 9 * detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
10 * $Id$ 10 * $Id$
11 * 11 *
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */ 25 */
26 26
27 #include "nav_types.h" 27 #include "nav_types.h"
28 28
29 /**
30 * Pretty printing of the NAV packets, PCI and DSI structs.
31 */
32
29 #ifdef __cplusplus 33 #ifdef __cplusplus
30 extern "C" { 34 extern "C" {
31 #endif 35 #endif
32 36
33 /** 37 /**
34 * Prints information contained in the PCI to stdout. 38 * Prints information contained in the PCI to stdout.
39 *
40 * @param pci Pointer to the PCI data structure to be printed.
35 */ 41 */
36 void navPrint_PCI(pci_t *); 42 void navPrint_PCI(pci_t *);
37 43
38 /** 44 /**
39 * Prints information contained in the DSI to stdout. 45 * Prints information contained in the DSI to stdout.
46 *
47 * @param dsi Pointer to the DSI data structure to be printed.
40 */ 48 */
41 void navPrint_DSI(dsi_t *); 49 void navPrint_DSI(dsi_t *);
42 50
43 #ifdef __cplusplus 51 #ifdef __cplusplus
44 }; 52 };