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

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * PGROGRAM CHAIN 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.  */
  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 "pgc.h"
  35. #include "decode.h"
  36. #define PGCI_SUB_LEN 8
  37. typedef struct {
  38. u_short id : 16; // Language
  39. u_short : 16; // don't know
  40. u_int start : 32; // Start of unit
  41. } pgci_sub_t;
  42. #define MLU_SUB_LEN 8
  43. typedef struct {
  44.         u_short lang            : 16;   // Language
  45.         u_short foo             : 16;   // don't know
  46.         u_int   start           : 32;   // Start of unit
  47. } mlu_sub_t;
  48. #define LU_SUB_LEN 8
  49. typedef struct {
  50.         u_short foo             : 16;   // don't know
  51.         u_short bar             : 16;   // don't know
  52.         u_int   start           : 32;   // Start of unit
  53. } lu_sub_t;
  54. #ifdef PARSER
  55. static void _ifo_print_mlu (u_char *ptr);
  56. #endif
  57. /**
  58.  *
  59.  */
  60. int ifoGetPGCI (ifo_hdr_t *hdr, int title, char **ptr)
  61. {
  62. pgci_sub_t *pgci_sub;
  63. *ptr = (char *) hdr;
  64. if (!*ptr)
  65. return -1;
  66. if (title > hdr->num)
  67. return -1;
  68. *ptr += IFO_HDR_LEN;
  69. pgci_sub = (pgci_sub_t *) *ptr + title;
  70. *ptr = (char *) hdr + ntohl (pgci_sub->start);
  71. return 0;
  72. }
  73. #ifdef PARSER
  74. /**
  75.  *
  76.  */
  77. void ifo_print_title_pgci (ifo_t *ifo)
  78. {
  79. ifo_hdr_t *hdr = (ifo_hdr_t *) ifo->data[ID_TITLE_PGCI];
  80. int i;
  81. if (!hdr)
  82. return;
  83. printf ("nTITLE PROGAM CHAIN INFORMATIONn");
  84. printf ("---n");
  85. printf ("number of units: %dn", ntohs (hdr->num));
  86. for (i=0; i<ntohs(hdr->num); i++) {
  87. char *ptr;
  88. if (ifoGetPGCI (hdr, i, &ptr) >= 0)
  89. ifo_print_pgc (ptr);
  90. }
  91. }
  92. /**
  93.  *
  94.  */
  95. void ifo_print_menu_pgci (ifo_t *ifo)
  96. {
  97. ifo_hdr_t *hdr = (ifo_hdr_t *) ifo->data[ID_MENU_PGCI];
  98. int i;
  99. if (!hdr)
  100. return;
  101. printf ("nMENU PROGRAM CHAIN INFORMATIONn");
  102. printf ("---n");
  103. printf ("number of units: %xn", ntohs (hdr->num));
  104. for (i=0; i<ntohs(hdr->num); i++) {
  105. char *ptr;
  106. if (ifoGetPGCI (hdr, i, &ptr) >= 0)
  107. _ifo_print_mlu (ptr);
  108. }
  109. }
  110. /**
  111.  *
  112.  */
  113. static void _ifo_print_mlu (u_char *ptr)
  114. {
  115. ifo_hdr_t *hdr = (ifo_hdr_t *) ptr;
  116. int i;
  117. printf ("ntLANGUAGE UNITn");
  118. ptr += IFO_HDR_LEN;
  119. for (i=0; i<ntohs(hdr->num); i++) {
  120. lu_sub_t *lu_sub = (lu_sub_t *) ptr;
  121. printf ("tt%x: menu: %x parental: %xn",
  122. i,
  123. ntohs (lu_sub->foo),
  124.                         ntohs (lu_sub->bar));
  125. ptr += LU_SUB_LEN;
  126. }
  127. for (i=0; i<ntohs(hdr->num); i++) {
  128. char *ptr;
  129. if (ifoGetPGCI (hdr, i, &ptr) >= 0)
  130. ifo_print_pgc (ptr);
  131. }
  132. }
  133. #endif