Fix vf_tcdump's compilation
[mplayer/kovensky.git] / libdvdnav / remap.h
blob3d4dcedadbe06dd3c4a3fb1efa110efd2f154c78
1 /*
2 * This file is part of libdvdnav, a DVD navigation library.
4 * libdvdnav is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * libdvdnav is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with libdvdnav; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #ifndef LIBDVDNAV_REMAP_H
20 #define LIBDVDNAV_REMAP_H
21 typedef struct block_s block_t;
23 typedef struct remap_s remap_t;
25 remap_t* remap_loadmap( char *title);
27 unsigned long remap_block(
28 remap_t *map, int domain, int title, int program,
29 unsigned long cblock, unsigned long offset);
31 #endif /* LIBDVDNAV_REMAP_H */