/xbmc/cores/dvdplayer/DVDInputStreams/dvdnav/remap.h

http://github.com/xbmc/xbmc · C++ Header · 31 lines · 9 code · 5 blank · 17 comment · 0 complexity · 9cc433422fa59a8bd784ebe4c7b204af MD5 · raw file

  1. /*
  2. * This file is part of libdvdnav, a DVD navigation library.
  3. *
  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.
  8. *
  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.
  13. *
  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.
  17. */
  18. #ifndef LIBDVDNAV_REMAP_H
  19. #define LIBDVDNAV_REMAP_H
  20. typedef struct block_s block_t;
  21. typedef struct remap_s remap_t;
  22. remap_t* remap_loadmap( char *title);
  23. unsigned long remap_block(
  24. remap_t *map, int domain, int title, int program,
  25. unsigned long cblock, unsigned long offset);
  26. #endif /* LIBDVDNAV_REMAP_H */