diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-27 21:19:07 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-27 21:19:07 +0000 |
commit | a0a7c3a8389dd1a21f286befa638d94a90463684 (patch) | |
tree | 7104c6fe93acf9045b78305e918e9ace3eeede75 /src/input/libdvdread/nav_print.h | |
parent | 4ab0fb4227cbba67eba08cc455ee38756d5e3f6b (diff) | |
download | xine-lib-a0a7c3a8389dd1a21f286befa638d94a90463684.tar.gz xine-lib-a0a7c3a8389dd1a21f286befa638d94a90463684.tar.bz2 |
sync to libdvdread cvs should fix segfault when playing DVDs copied to HD
thanks to Markus Plail for reporting this bug and the fix as well
CVS patchset: 3381
CVS date: 2002/11/27 21:19:07
Diffstat (limited to 'src/input/libdvdread/nav_print.h')
-rw-r--r-- | src/input/libdvdread/nav_print.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/input/libdvdread/nav_print.h b/src/input/libdvdread/nav_print.h index f0551a39b..35d4b09f0 100644 --- a/src/input/libdvdread/nav_print.h +++ b/src/input/libdvdread/nav_print.h @@ -2,8 +2,8 @@ #define NAV_PRINT_H_INCLUDED /* - * Copyright (C) 2001 Billy Biggs <vektor@dumbterm.net>, - * Håkan Hjort <d95hjort@dtek.chalmers.se> + * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>, + * Håkan Hjort <d95hjort@dtek.chalmers.se> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,17 +22,25 @@ #include "nav_types.h" +/** + * Pretty printing of the NAV packets, PCI and DSI structs. + */ + #ifdef __cplusplus extern "C" { #endif /** * Prints information contained in the PCI to stdout. + * + * @param pci Pointer to the PCI data structure to be printed. */ void navPrint_PCI(pci_t *); /** * Prints information contained in the DSI to stdout. + * + * @param dsi Pointer to the DSI data structure to be printed. */ void navPrint_DSI(dsi_t *); |