summaryrefslogtreecommitdiff
path: root/src/input/libdvdread/nav_read.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-11-27 21:19:07 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-11-27 21:19:07 +0000
commita0a7c3a8389dd1a21f286befa638d94a90463684 (patch)
tree7104c6fe93acf9045b78305e918e9ace3eeede75 /src/input/libdvdread/nav_read.h
parent4ab0fb4227cbba67eba08cc455ee38756d5e3f6b (diff)
downloadxine-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_read.h')
-rw-r--r--src/input/libdvdread/nav_read.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/input/libdvdread/nav_read.h b/src/input/libdvdread/nav_read.h
index bd48d5ce6..2f41c920d 100644
--- a/src/input/libdvdread/nav_read.h
+++ b/src/input/libdvdread/nav_read.h
@@ -2,7 +2,7 @@
#define NAV_READ_H_INCLUDED
/*
- * Copyright (C) 2000, 2001 Håkan Hjort <d95hjort@dtek.chalmers.se>.
+ * Copyright (C) 2000, 2001, 2002 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
@@ -21,17 +21,27 @@
#include "nav_types.h"
+/**
+ * Parsing of NAV data, PCI and DSI parts.
+ */
+
#ifdef __cplusplus
extern "C" {
#endif
/**
- * Reads the PCI packet data pointed to into pci struct.
- */
+ * Reads the PCI packet data pointed to into th pci struct.
+ *
+ * @param pci Pointer to the PCI data structure to be filled in.
+ * @param bufffer Pointer to the buffer of the on disc PCI data.
+ */
void navRead_PCI(pci_t *, unsigned char *);
/**
* Reads the DSI packet data pointed to into dsi struct.
+ *
+ * @param dsi Pointer to the DSI data structure to be filled in.
+ * @param bufffer Pointer to the buffer of the on disc DSI data.
*/
void navRead_DSI(dsi_t *, unsigned char *);