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

DVD

开发平台:

Unix_Linux

  1. /*
  2.  * SUBPICTURE 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 <stdlib.h>
  31. #include <sys/types.h>
  32. #include <unistd.h>
  33. #include "ifo.h"
  34. #include "misc.h"
  35. #include "decode.h"
  36. #define SUBPIC_LEN    6
  37. struct subpic_struct {
  38. u_int   zero : 32; // 0x00000000 ?
  39. u_char  zero1 : 8; // 0x00 ?
  40. u_char  num : 8; // number of SPUs
  41. };
  42. #define SUBPIC_TBL_LEN 6
  43. struct subpic_sub_struct {
  44. u_short prefix  : 16; // 0x0100 ?
  45. u_short lang_code : 16; // <char> description
  46. u_char foo : 8; // dont know
  47. u_char caption : 8; // 0x00 ?
  48. };
  49. /**
  50.  * Sub Picture Unit
  51.  */
  52. ifo_subpic_t *ifoGetSPU (u_char *ptr)
  53. {
  54. ifo_subpic_t *subpic;
  55. int i;
  56. if (!ptr)
  57. return NULL;
  58. if (!(subpic = (ifo_subpic_t *) malloc (sizeof (ifo_subpic_t))))
  59. return NULL;
  60. subpic->num = ((struct subpic_struct *)ptr)->num;
  61. subpic->sub = NULL;
  62. ptr += SUBPIC_LEN;
  63. if (!(subpic->sub = (ifo_subpic_sub_t *) calloc (subpic->num, sizeof (ifo_subpic_sub_t))))
  64. return NULL;
  65. for (i=0; i<subpic->num; i++) {
  66. ifo_subpic_sub_t *subpic_sub = (ifo_subpic_sub_t *) subpic->sub + i;
  67. printf ("s: %xn", ((struct subpic_sub_struct *)ptr)->foo);
  68. subpic_sub->lang_code = ((struct subpic_sub_struct *)ptr)->lang_code;
  69. subpic_sub->caption = ((struct subpic_sub_struct *)ptr)->caption;
  70. ptr += SUBPIC_TBL_LEN;
  71. }
  72. return subpic;
  73. }
  74. #ifdef PARSER
  75. /**
  76.  *
  77.  */
  78. void ifoPrintSPU (ifo_subpic_t *subpic)
  79. {
  80. int i;
  81. if (!subpic) 
  82. return;
  83. printf ("nSUBPICTUREn");
  84. printf ("---n");
  85. printf ("number of streams:t%dn", subpic->num);
  86. for (i=0; i<subpic->num; i++) {
  87. ifo_subpic_sub_t *subpic_sub = (ifo_subpic_sub_t *) subpic->sub + i;
  88. char *caption;
  89. printf ("tlang_code:t%sn",   decode_lang (subpic_sub->lang_code));
  90. if ((caption = decode_caption (subpic_sub->caption)))
  91. printf ("tcaption:t%sn", caption);
  92. printf ("n");
  93. }
  94. }
  95. #endif