comparison libdvdread/nav_read.h @ 20615:1a4fcea7ab53

libmpdvdkit2 --> libdvdread, it just contains libdvdread now.
author diego
date Fri, 03 Nov 2006 13:48:52 +0000
parents libmpdvdkit2/nav_read.h@0783dd397f74
children
comparison
equal deleted inserted replaced
20614:d56caf59d253 20615:1a4fcea7ab53
1 #ifndef NAV_READ_H_INCLUDED
2 #define NAV_READ_H_INCLUDED
3
4 /*
5 * Copyright (C) 2000, 2001, 2002 Håkan Hjort <d95hjort@dtek.chalmers.se>.
6 *
7 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff.
8 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
9 * $Id$
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 #include "nav_types.h"
27
28 /**
29 * Parsing of NAV data, PCI and DSI parts.
30 */
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 /**
37 * Reads the PCI packet data pointed to into th pci struct.
38 *
39 * @param pci Pointer to the PCI data structure to be filled in.
40 * @param bufffer Pointer to the buffer of the on disc PCI data.
41 */
42 void navRead_PCI(pci_t *, unsigned char *);
43
44 /**
45 * Reads the DSI packet data pointed to into dsi struct.
46 *
47 * @param dsi Pointer to the DSI data structure to be filled in.
48 * @param bufffer Pointer to the buffer of the on disc DSI data.
49 */
50 void navRead_DSI(dsi_t *, unsigned char *);
51
52 #ifdef __cplusplus
53 };
54 #endif
55 #endif /* NAV_READ_H_INCLUDED */