Clarify relationship between -ass and -fontconfig in the man page.
[mplayer/glamo.git] / libdvdread / nav_print.h
blobb01e82ba567adac364f99d8d4dbbcfa64841b5f1
1 /* -*- c-basic-offset: 2; indent-tabs-mode: nil -*- */
2 #ifndef NAV_PRINT_H_INCLUDED
3 #define NAV_PRINT_H_INCLUDED
5 /*
6 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>,
7 * HÃ¥kan Hjort <d95hjort@dtek.chalmers.se>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <libdvdread/nav_types.h>
26 /**
27 * Pretty printing of the NAV packets, PCI and DSI structs.
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
34 /**
35 * Prints information contained in the PCI to stdout.
37 * @param pci Pointer to the PCI data structure to be printed.
39 void navPrint_PCI(pci_t *);
41 /**
42 * Prints information contained in the DSI to stdout.
44 * @param dsi Pointer to the DSI data structure to be printed.
46 void navPrint_DSI(dsi_t *);
48 #ifdef __cplusplus
50 #endif
51 #endif /* NAV_PRINT_H_INCLUDED */