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

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * TIME MAP TABLE
  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 TMT_SUB_LEN 4
  36. typedef struct {
  37. u_char tu : 8; // time unit (in seconds)
  38. u_int : 24; // don't know
  39. } tmt_sub_t;
  40. #ifdef PARSER
  41. /**
  42.  *
  43.  */
  44. void ifo_print_tmt (ifo_t *ifo)
  45. {
  46. u_char *ptr = ifo->data[ID_TMT];
  47. ifo_hdr_t *hdr = (ifo_hdr_t *) ifo->data[ID_TMT];
  48. int i;
  49. if (!ifo->data[ID_TMT])
  50. return;
  51. printf ("nTIME MAP TABLEn");
  52. printf ("---n");
  53. printf ("number of maps: %dn", ntohs (hdr->num));
  54. printf ("length of table: %dn", ntohl (hdr->len));
  55. ptr += IFO_HDR_LEN;
  56. for (i=0; i<ntohs (hdr->num); i++) {
  57. printf ("%d start 0x%xn", i, get4bytes (ptr));
  58. ptr += 4;
  59. }
  60. {
  61. tmt_sub_t *tmt_sub = (tmt_sub_t *) ptr;
  62. printf ("time unit (in seconds): %dn", tmt_sub->tu);
  63. ptr += TMT_SUB_LEN;
  64. }
  65. while (ptr < (((u_char *) hdr) + ntohl (hdr->len))) {
  66. printf ("0x%06x%c ", get4bytes (ptr)&0x7FFFFFFF,
  67. get4bytes (ptr)&0x80000000 ? 'L' : ' ');
  68. ptr += 4;
  69. }
  70. }
  71. #endif