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

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * VIDEO TITLE SET CELL ADDRESS
  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.  */
  27. #ifdef PARSER
  28. #include <stdio.h>
  29. #endif
  30. #include <sys/types.h>
  31. #include <unistd.h>
  32. #include "ifo.h"
  33. #include "misc.h"
  34. #include "decode.h"
  35. #define CADDR_HDR_LEN 8
  36. typedef struct {
  37. u_short num : 16; // Number of Video Objects
  38. u_short unknown : 16; // don't know
  39. u_int len : 32; // length of table
  40. } cell_addr_hdr_t;
  41. static void _ifo_print_cell_addr (u_char *ptr);
  42. /**
  43.  *
  44.  */
  45. int ifoGetCellAddr (char *hdr, char **ptr)
  46. {
  47. if (!hdr)
  48. return -1;
  49. *ptr = hdr + CADDR_HDR_LEN;
  50. return 0;
  51. }
  52. #ifdef PARSER
  53. /**
  54.  *
  55.  */
  56. void ifo_print_vts_cell_addr (ifo_t *ifo)
  57. {
  58. printf ("nTITLE SET ");
  59. if (ifo->data[ID_TITLE_CELL_ADDR])
  60. _ifo_print_cell_addr (ifo->data[ID_TITLE_CELL_ADDR]);
  61. }
  62. /**
  63.  *
  64.  */
  65. void ifo_print_vtsm_cell_addr (ifo_t *ifo)
  66. {
  67. printf ("nMENU ");
  68. if (ifo->data[ID_MENU_CELL_ADDR])
  69. _ifo_print_cell_addr (ifo->data[ID_MENU_CELL_ADDR]);
  70. }
  71. /**
  72.  *
  73.  */
  74. void _ifo_print_cell_addr (u_char *ptr)
  75. {
  76. cell_addr_hdr_t *cell_addr_hdr = (cell_addr_hdr_t *) ptr;
  77. ifo_cell_addr_t *cell_addr;
  78. int i;
  79. if (!ptr)
  80. return;
  81. printf ("CELL ADDRESSn");
  82. printf ("---n");
  83. printf ("number of VOBs: %dn", ntohs (cell_addr_hdr->num));
  84. printf ("???: 0x%xn", ntohl (cell_addr_hdr->unknown));
  85. printf ("len: 0x%xn", ntohl (cell_addr_hdr->len));
  86. ptr += CADDR_HDR_LEN;
  87. cell_addr = (ifo_cell_addr_t *) ptr;
  88. for (i=0; i<ntohl (cell_addr_hdr->len)/sizeof (ifo_cell_addr_t); i++) {
  89. //while (ptr < (((u_char *) cell_addr_hdr) + ntohl (cell_addr_hdr->len))) {
  90. printf ("tVOB ID: 0x%x Cell ID: 0x%x Start: 0x%x End: 0x%xn",
  91. ntohs (cell_addr->vob_id), cell_addr->cell_id,
  92. ntohl (cell_addr->start), ntohl (cell_addr->end));
  93. cell_addr ++;
  94. }
  95. printf ("nnn");
  96. }
  97. #endif