ifo_vobu_addr_map.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:2k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * VIDEO OBJECT UNiT ADDRESS MAP
  3.  *
  4.  * Copyright (C) 1998,1999  Thomas Mirlacher
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  * 
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  * 
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  * 
  20.  * The author may be reached as dent@cosy.sbg.ac.at, or
  21.  * Thomas Mirlacher, Jakob-Haringerstr. 2, A-5020 Salzburg,
  22.  * Austria
  23.  *
  24.  *------------------------------------------------------------
  25.  *
  26.  * $log$
  27.  */
  28. #ifdef PARSER
  29. #include <stdio.h>
  30. #endif
  31. #include <sys/types.h>
  32. #include <unistd.h>
  33. #include "ifo.h"
  34. #include "misc.h"
  35. #include "decode.h"
  36. #define VOBU_ADMAP_HDR_LEN 4
  37. typedef struct {
  38. u_int len : 32; // length of table
  39. } vobu_addr_map_hdr_t;
  40. static void _ifo_print_vobu_addr_map (u_char *ptr);
  41. #ifdef PARSER
  42. /**
  43.  *
  44.  */
  45. void ifo_print_vts_vobu_addr_map (ifo_t *ifo)
  46. {
  47. printf ("nTITLE SET ");
  48. if (ifo->data[ID_TITLE_VOBU_ADDR_MAP])
  49. _ifo_print_vobu_addr_map (ifo->data[ID_TITLE_VOBU_ADDR_MAP]);
  50. }
  51. /**
  52.  *
  53.  */
  54. void ifo_print_vtsm_vobu_addr_map (ifo_t *ifo)
  55. {
  56. printf ("nMENU ");
  57. if (ifo->data[ID_MENU_VOBU_ADDR_MAP])
  58. _ifo_print_vobu_addr_map (ifo->data[ID_MENU_VOBU_ADDR_MAP]);
  59. }
  60. /**
  61.  *
  62.  */
  63. void _ifo_print_vobu_addr_map (u_char *ptr)
  64. {
  65. vobu_addr_map_hdr_t *vobu_addr_map_hdr = (vobu_addr_map_hdr_t *) ptr;
  66. int i;
  67. u_int num;
  68. printf ("VIDEO OBJECT ADDRESS MAPn");
  69. printf ("---n");
  70. num = ntohl (vobu_addr_map_hdr->len)  / 4;
  71. printf ("number of units: %dnn", num);
  72. printf ("len of units: %dnn", ntohl (vobu_addr_map_hdr->len));
  73. ptr += VOBU_ADMAP_HDR_LEN;
  74. for (i=0; i<num; i++) {
  75. printf ("0x%07x ", get4bytes (ptr));
  76. ptr += 4;
  77. }
  78. printf ("nnn");
  79. }
  80. #endif