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

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * VIDEO TITLE SET MANAGEMENT INFORMATION
  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. #include <sys/types.h>
  29. #include <stdlib.h>
  30. #include "misc.h"
  31. #include "ifo.h"
  32. #include "ifo_tat.h"
  33. /**
  34.  * 
  35.  */
  36. tat_t *ifo_get_tat_vmg (u_char *buf)
  37. {
  38. tat_t *tat;
  39. int i;
  40. if (!(tat = (tat_t *) malloc (sizeof (tat_t))))
  41. return NULL;
  42. tat->num_menu_vobs = 0; //get4bytes (buf + 0xC0);
  43. tat->num_title_vobs = 0; //get4bytes (buf + 0xC4);
  44. tat->start_ptt = get4bytes (buf + 0xc4); // change
  45. tat->start_title_pgci = 0; //get4bytes (buf + 0xC4);
  46. tat->start_menu_pgci = get4bytes (buf + 0xC8);
  47. tat->start_tmt = get4bytes (buf + 0xD0); // change
  48. tat->start_menu_cell_addr = get4bytes (buf + 0xD8);
  49. tat->start_menu_vobu_addr_map = get4bytes (buf + 0xDC);
  50. tat->start_title_cell_addr = 0; //get4bytes (buf + 0xE0);
  51. tat->start_title_vobu_addr_map = 0; //get4bytes (buf + 0xE4);
  52. for (i=0xC0; i<=0xE4; i+=4)
  53. printf ("%02x %02xn", i, get4bytes (buf + i)*0x800);
  54. ifo_print_tat (tat);
  55. return tat;
  56. }
  57. /**
  58.  * 
  59.  */
  60. tat_t *ifo_get_tat_vts (u_char *buf)
  61. {
  62. tat_t *tat;
  63. int i;
  64. if (!(tat = (tat_t *) malloc (sizeof (tat_t))))
  65. return NULL;
  66. tat->num_menu_vobs = get4bytes (buf + 0xC0);
  67. tat->num_title_vobs = get4bytes (buf + 0xC4);
  68. tat->start_ptt = get4bytes (buf + 0xC8);
  69. tat->start_title_pgci = get4bytes (buf + 0xCC);
  70. tat->start_menu_pgci = get4bytes (buf + 0xD0);
  71. tat->start_tmt = get4bytes (buf + 0xD4);
  72. tat->start_menu_cell_addr = get4bytes (buf + 0xD8);
  73. tat->start_menu_vobu_addr_map = get4bytes (buf + 0xDC);
  74. tat->start_title_cell_addr = get4bytes (buf + 0xE0);
  75. tat->start_title_vobu_addr_map = get4bytes (buf + 0xE4);
  76. ifo_print_tat (tat);
  77. return tat;
  78. }
  79. /**
  80.  *
  81.  */
  82. void ifo_print_tat (tat_t *tat)
  83. {
  84.         printf ("nTATn");
  85.         printf ("---n");
  86.         printf ("num_menu_vobs:tt0x%xn", tat->num_menu_vobs*DVD_BLOCKSIZE);
  87.         printf ("num_title_vobs:tt0x%xn", tat->num_title_vobs*DVD_BLOCKSIZE);
  88.         printf ("start_ptt:tt0x%xn", tat->start_ptt*DVD_BLOCKSIZE);
  89.         printf ("start_title_pgci:tt0x%xn", tat->start_title_pgci*DVD_BLOCKSIZE);
  90.         printf ("start_menu_pgci:tt0x%xn", tat->start_menu_pgci*DVD_BLOCKSIZE);
  91.         printf ("start_tmt:tt0x%xn", tat->start_tmt*DVD_BLOCKSIZE);
  92.         printf ("start_menu_cell_addr:tt0x%xn", tat->start_menu_cell_addr*DVD_BLOCKSIZE);
  93.         printf ("start_menu_vobu_addr_map:t0x%xn", tat->start_menu_vobu_addr_map*DVD_BLOCKSIZE);
  94.         printf ("start_title_cell_addr:tt0x%xn", tat->start_title_cell_addr*DVD_BLOCKSIZE);
  95.         printf ("start_title_vobu_addr_map:t0x%xn", tat->start_title_vobu_addr_map*DVD_BLOCKSIZE);
  96. }