Clarify relationship between -ass and -fontconfig in the man page.
[mplayer/glamo.git] / libdvdread / nav_read.h
blobafbff978d5cb30d786ef71c84ed55b079780922f
1 /* -*- c-basic-offset: 2; indent-tabs-mode: nil -*- */
2 #ifndef NAV_READ_H_INCLUDED
3 #define NAV_READ_H_INCLUDED
5 /*
6 * Copyright (C) 2000, 2001, 2002 HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <libdvdread/nav_types.h>
25 /**
26 * Parsing of NAV data, PCI and DSI parts.
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
33 /**
34 * Reads the PCI packet data pointed to into th pci struct.
36 * @param pci Pointer to the PCI data structure to be filled in.
37 * @param bufffer Pointer to the buffer of the on disc PCI data.
38 */
39 void navRead_PCI(pci_t *, unsigned char *);
41 /**
42 * Reads the DSI packet data pointed to into dsi struct.
44 * @param dsi Pointer to the DSI data structure to be filled in.
45 * @param bufffer Pointer to the buffer of the on disc DSI data.
47 void navRead_DSI(dsi_t *, unsigned char *);
49 #ifdef __cplusplus
51 #endif
52 #endif /* NAV_READ_H_INCLUDED */