libmp4.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:28k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libmp4.h : LibMP4 library for mp4 module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 the VideoLAN team
  5.  * $Id: a4e786d4477c41181182b3ded605f43e2fad5aca $
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21.  *****************************************************************************/
  22. #ifndef _VLC_MP4_H
  23. #define _VLC_MP4_H 1
  24. #define FOURCC_uuid VLC_FOURCC( 'u', 'u', 'i', 'd' )
  25. #define FOURCC_ftyp VLC_FOURCC( 'f', 't', 'y', 'p' )
  26. #define FOURCC_moov VLC_FOURCC( 'm', 'o', 'o', 'v' )
  27. #define FOURCC_foov VLC_FOURCC( 'f', 'o', 'o', 'v' )
  28. #define FOURCC_cmov VLC_FOURCC( 'c', 'm', 'o', 'v' )
  29. #define FOURCC_dcom VLC_FOURCC( 'd', 'c', 'o', 'm' )
  30. #define FOURCC_cmvd VLC_FOURCC( 'c', 'm', 'v', 'd' )
  31. #define FOURCC_moof VLC_FOURCC( 'm', 'o', 'o', 'f' )
  32. #define FOURCC_mdat VLC_FOURCC( 'm', 'd', 'a', 't' )
  33. #define FOURCC_skip VLC_FOURCC( 's', 'k', 'i', 'p' )
  34. #define FOURCC_free VLC_FOURCC( 'f', 'r', 'e', 'e' )
  35. #define FOURCC_udta VLC_FOURCC( 'u', 'd', 't', 'a' )
  36. #define FOURCC_wide VLC_FOURCC( 'w', 'i', 'd', 'e' )
  37. #define FOURCC_trak VLC_FOURCC( 't', 'r', 'a', 'k' )
  38. #define FOURCC_mvhd VLC_FOURCC( 'm', 'v', 'h', 'd' )
  39. #define FOURCC_tkhd VLC_FOURCC( 't', 'k', 'h', 'd' )
  40. #define FOURCC_tref VLC_FOURCC( 't', 'r', 'e', 'f' )
  41. #define FOURCC_mdia VLC_FOURCC( 'm', 'd', 'i', 'a' )
  42. #define FOURCC_mdhd VLC_FOURCC( 'm', 'd', 'h', 'd' )
  43. #define FOURCC_hdlr VLC_FOURCC( 'h', 'd', 'l', 'r' )
  44. #define FOURCC_minf VLC_FOURCC( 'm', 'i', 'n', 'f' )
  45. #define FOURCC_vmhd VLC_FOURCC( 'v', 'm', 'h', 'd' )
  46. #define FOURCC_smhd VLC_FOURCC( 's', 'm', 'h', 'd' )
  47. #define FOURCC_hmhd VLC_FOURCC( 'h', 'm', 'h', 'd' )
  48. #define FOURCC_dinf VLC_FOURCC( 'd', 'i', 'n', 'f' )
  49. #define FOURCC_url  VLC_FOURCC( 'u', 'r', 'l', ' ' )
  50. #define FOURCC_urn  VLC_FOURCC( 'u', 'r', 'n', ' ' )
  51. #define FOURCC_dref VLC_FOURCC( 'd', 'r', 'e', 'f' )
  52. #define FOURCC_stbl VLC_FOURCC( 's', 't', 'b', 'l' )
  53. #define FOURCC_stts VLC_FOURCC( 's', 't', 't', 's' )
  54. #define FOURCC_ctts VLC_FOURCC( 'c', 't', 't', 's' )
  55. #define FOURCC_stsd VLC_FOURCC( 's', 't', 's', 'd' )
  56. #define FOURCC_stsz VLC_FOURCC( 's', 't', 's', 'z' )
  57. #define FOURCC_stz2 VLC_FOURCC( 's', 't', 'z', '2' )
  58. #define FOURCC_stsc VLC_FOURCC( 's', 't', 's', 'c' )
  59. #define FOURCC_stco VLC_FOURCC( 's', 't', 'c', 'o' )
  60. #define FOURCC_co64 VLC_FOURCC( 'c', 'o', '6', '4' )
  61. #define FOURCC_stss VLC_FOURCC( 's', 't', 's', 's' )
  62. #define FOURCC_stsh VLC_FOURCC( 's', 't', 's', 'h' )
  63. #define FOURCC_stdp VLC_FOURCC( 's', 't', 'd', 'p' )
  64. #define FOURCC_padb VLC_FOURCC( 'p', 'a', 'd', 'b' )
  65. #define FOURCC_edts VLC_FOURCC( 'e', 'd', 't', 's' )
  66. #define FOURCC_elst VLC_FOURCC( 'e', 'l', 's', 't' )
  67. #define FOURCC_udta VLC_FOURCC( 'u', 'd', 't', 'a' )
  68. #define FOURCC_mvex VLC_FOURCC( 'm', 'v', 'e', 'x' )
  69. #define FOURCC_trex VLC_FOURCC( 't', 'r', 'e', 'x' )
  70. #define FOURCC_mfhd VLC_FOURCC( 'm', 'f', 'h', 'd' )
  71. #define FOURCC_traf VLC_FOURCC( 't', 'r', 'a', 'f' )
  72. #define FOURCC_tfhd VLC_FOURCC( 't', 'f', 'h', 'd' )
  73. #define FOURCC_trun VLC_FOURCC( 't', 'r', 'u', 'n' )
  74. #define FOURCC_cprt VLC_FOURCC( 'c', 'p', 'r', 't' )
  75. #define FOURCC_iods VLC_FOURCC( 'i', 'o', 'd', 's' )
  76. #define FOURCC_nmhd VLC_FOURCC( 'n', 'm', 'h', 'd' )
  77. #define FOURCC_mp2v VLC_FOURCC( 'm', 'p', '2', 'v' )
  78. #define FOURCC_mp4v VLC_FOURCC( 'm', 'p', '4', 'v' )
  79. #define FOURCC_mp4a VLC_FOURCC( 'm', 'p', '4', 'a' )
  80. #define FOURCC_mp4s VLC_FOURCC( 'm', 'p', '4', 's' )
  81. #define FOURCC_vide VLC_FOURCC( 'v', 'i', 'd', 'e' )
  82. #define FOURCC_soun VLC_FOURCC( 's', 'o', 'u', 'n' )
  83. #define FOURCC_hint VLC_FOURCC( 'h', 'i', 'n', 't' )
  84. #define FOURCC_hdv2 VLC_FOURCC( 'h', 'd', 'v', '2' )
  85. #define FOURCC_dpnd VLC_FOURCC( 'd', 'p', 'n', 'd' )
  86. #define FOURCC_ipir VLC_FOURCC( 'i', 'p', 'i', 'r' )
  87. #define FOURCC_mpod VLC_FOURCC( 'm', 'p', 'o', 'd' )
  88. #define FOURCC_hnti VLC_FOURCC( 'h', 'n', 't', 'i' )
  89. #define FOURCC_rtp  VLC_FOURCC( 'r', 't', 'p', ' ' )
  90. #define FOURCC_isom VLC_FOURCC( 'i', 's', 'o', 'm' )
  91. #define FOURCC_esds VLC_FOURCC( 'e', 's', 'd', 's' )
  92. #define FOURCC__mp3 VLC_FOURCC( '.', 'm', 'p', '3' )
  93. #define FOURCC_ms02 VLC_FOURCC( 'm', 's', 0x0, 0x02 )
  94. #define FOURCC_ms11 VLC_FOURCC( 'm', 's', 0x0, 0x11 )
  95. #define FOURCC_ms55 VLC_FOURCC( 'm', 's', 0x0, 0x55 )
  96. #define FOURCC_twos VLC_FOURCC( 't', 'w', 'o', 's' )
  97. #define FOURCC_sowt VLC_FOURCC( 's', 'o', 'w', 't' )
  98. #define FOURCC_QDMC VLC_FOURCC( 'Q', 'D', 'M', 'C' )
  99. #define FOURCC_QDM2 VLC_FOURCC( 'Q', 'D', 'M', '2' )
  100. #define FOURCC_ima4 VLC_FOURCC( 'i', 'm', 'a', '4' )
  101. #define FOURCC_IMA4 VLC_FOURCC( 'I', 'M', 'A', '4' )
  102. #define FOURCC_dvi  VLC_FOURCC( 'd', 'v', 'i', ' ' )
  103. #define FOURCC_MAC3 VLC_FOURCC( 'M', 'A', 'C', '3' )
  104. #define FOURCC_MAC6 VLC_FOURCC( 'M', 'A', 'C', '6' )
  105. #define FOURCC_alaw VLC_FOURCC( 'a', 'l', 'a', 'w' )
  106. #define FOURCC_ulaw VLC_FOURCC( 'u', 'l', 'a', 'w' )
  107. #define FOURCC_Qclp VLC_FOURCC( 'Q', 'c', 'l', 'p' )
  108. #define FOURCC_samr VLC_FOURCC( 's', 'a', 'm', 'r' )
  109. #define FOURCC_sawb VLC_FOURCC( 's', 'a', 'w', 'b' )
  110. #define FOURCC_OggS VLC_FOURCC( 'O', 'g', 'g', 'S' )
  111. #define FOURCC_alac VLC_FOURCC( 'a', 'l', 'a', 'c' )
  112. #define FOURCC_dac3 VLC_FOURCC( 'd', 'a', 'c', '3' )
  113. #define FOURCC_dec3 VLC_FOURCC( 'd', 'e', 'c', '3' )
  114. #define FOURCC_zlib VLC_FOURCC( 'z', 'l', 'i', 'b' )
  115. #define FOURCC_SVQ1 VLC_FOURCC( 'S', 'V', 'Q', '1' )
  116. #define FOURCC_SVQ3 VLC_FOURCC( 'S', 'V', 'Q', '3' )
  117. #define FOURCC_ZyGo VLC_FOURCC( 'Z', 'y', 'G', 'o' )
  118. #define FOURCC_3IV1 VLC_FOURCC( '3', 'I', 'V', '1' )
  119. #define FOURCC_3iv1 VLC_FOURCC( '3', 'i', 'v', '1' )
  120. #define FOURCC_3IV2 VLC_FOURCC( '3', 'I', 'V', '2' )
  121. #define FOURCC_3iv2 VLC_FOURCC( '3', 'i', 'v', '2' )
  122. #define FOURCC_3IVD VLC_FOURCC( '3', 'I', 'V', 'D' )
  123. #define FOURCC_3ivd VLC_FOURCC( '3', 'i', 'v', 'd' )
  124. #define FOURCC_3VID VLC_FOURCC( '3', 'V', 'I', 'D' )
  125. #define FOURCC_3vid VLC_FOURCC( '3', 'v', 'i', 'd' )
  126. #define FOURCC_h263 VLC_FOURCC( 'h', '2', '6', '3' )
  127. #define FOURCC_s263 VLC_FOURCC( 's', '2', '6', '3' )
  128. #define FOURCC_DIVX VLC_FOURCC( 'D', 'I', 'V', 'X' )
  129. #define FOURCC_XVID VLC_FOURCC( 'X', 'V', 'I', 'D' )
  130. #define FOURCC_cvid VLC_FOURCC( 'c', 'v', 'i', 'd' )
  131. #define FOURCC_mjpa VLC_FOURCC( 'm', 'j', 'p', 'a' )
  132. #define FOURCC_mjpb VLC_FOURCC( 'm', 'j', 'q', 't' )
  133. #define FOURCC_mjqt VLC_FOURCC( 'm', 'j', 'h', 't' )
  134. #define FOURCC_mjht VLC_FOURCC( 'm', 'j', 'p', 'b' )
  135. #define FOURCC_VP31 VLC_FOURCC( 'V', 'P', '3', '1' )
  136. #define FOURCC_vp31 VLC_FOURCC( 'v', 'p', '3', '1' )
  137. #define FOURCC_h264 VLC_FOURCC( 'h', '2', '6', '4' )
  138. #define FOURCC_qdrw VLC_FOURCC( 'q', 'd', 'r', 'w' )
  139. #define FOURCC_avc1 VLC_FOURCC( 'a', 'v', 'c', '1' )
  140. #define FOURCC_avcC VLC_FOURCC( 'a', 'v', 'c', 'C' )
  141. #define FOURCC_m4ds VLC_FOURCC( 'm', '4', 'd', 's' )
  142. #define FOURCC_dvc  VLC_FOURCC( 'd', 'v', 'c', ' ' )
  143. #define FOURCC_dvp  VLC_FOURCC( 'd', 'v', 'p', ' ' )
  144. #define FOURCC_dv5n VLC_FOURCC( 'd', 'v', '5', 'n' )
  145. #define FOURCC_dv5p VLC_FOURCC( 'd', 'v', '5', 'p' )
  146. #define FOURCC_raw  VLC_FOURCC( 'r', 'a', 'w', ' ' )
  147. #define FOURCC_jpeg VLC_FOURCC( 'j', 'p', 'e', 'g' )
  148. #define FOURCC_yv12 VLC_FOURCC( 'y', 'v', '1', '2' )
  149. #define FOURCC_yuv2 VLC_FOURCC( 'y', 'u', 'v', '2' )
  150. #define FOURCC_rmra VLC_FOURCC( 'r', 'm', 'r', 'a' )
  151. #define FOURCC_rmda VLC_FOURCC( 'r', 'm', 'd', 'a' )
  152. #define FOURCC_rdrf VLC_FOURCC( 'r', 'd', 'r', 'f' )
  153. #define FOURCC_rmdr VLC_FOURCC( 'r', 'm', 'd', 'r' )
  154. #define FOURCC_rmvc VLC_FOURCC( 'r', 'm', 'v', 'c' )
  155. #define FOURCC_rmcd VLC_FOURCC( 'r', 'm', 'c', 'd' )
  156. #define FOURCC_rmqu VLC_FOURCC( 'r', 'm', 'q', 'u' )
  157. #define FOURCC_alis VLC_FOURCC( 'a', 'l', 'i', 's' )
  158. #define FOURCC_gmhd VLC_FOURCC( 'g', 'm', 'h', 'd' )
  159. #define FOURCC_wave VLC_FOURCC( 'w', 'a', 'v', 'e' )
  160. #define FOURCC_drms VLC_FOURCC( 'd', 'r', 'm', 's' )
  161. #define FOURCC_sinf VLC_FOURCC( 's', 'i', 'n', 'f' )
  162. #define FOURCC_schi VLC_FOURCC( 's', 'c', 'h', 'i' )
  163. #define FOURCC_user VLC_FOURCC( 'u', 's', 'e', 'r' )
  164. #define FOURCC_key  VLC_FOURCC( 'k', 'e', 'y', ' ' )
  165. #define FOURCC_iviv VLC_FOURCC( 'i', 'v', 'i', 'v' )
  166. #define FOURCC_name VLC_FOURCC( 'n', 'a', 'm', 'e' )
  167. #define FOURCC_priv VLC_FOURCC( 'p', 'r', 'i', 'v' )
  168. #define FOURCC_drmi VLC_FOURCC( 'd', 'r', 'm', 'i' )
  169. #define FOURCC_frma VLC_FOURCC( 'f', 'r', 'm', 'a' )
  170. #define FOURCC_skcr VLC_FOURCC( 's', 'k', 'c', 'r' )
  171. #define FOURCC_text VLC_FOURCC( 't', 'e', 'x', 't' )
  172. #define FOURCC_tx3g VLC_FOURCC( 't', 'x', '3', 'g' )
  173. #define FOURCC_subp VLC_FOURCC( 's', 'u', 'b', 'p' )
  174. #define FOURCC_sbtl VLC_FOURCC( 's', 'b', 't', 'l' )
  175. #define FOURCC_0xa9nam VLC_FOURCC( 0xa9, 'n', 'a', 'm' )
  176. #define FOURCC_0xa9aut VLC_FOURCC( 0xa9, 'a', 'u', 't' )
  177. #define FOURCC_0xa9swr VLC_FOURCC( 0xa9, 's', 'w', 'r' )
  178. #define FOURCC_0xa9cpy VLC_FOURCC( 0xa9, 'c', 'p', 'y' )
  179. #define FOURCC_0xa9inf VLC_FOURCC( 0xa9, 'i', 'n', 'f' )
  180. #define FOURCC_0xa9ART VLC_FOURCC( 0xa9, 'A', 'R', 'T' )
  181. #define FOURCC_0xa9des VLC_FOURCC( 0xa9, 'd', 'e', 's' )
  182. #define FOURCC_0xa9dir VLC_FOURCC( 0xa9, 'd', 'i', 'r' )
  183. #define FOURCC_0xa9cmt VLC_FOURCC( 0xa9, 'c', 'm', 't' )
  184. #define FOURCC_0xa9req VLC_FOURCC( 0xa9, 'r', 'e', 'q' )
  185. #define FOURCC_0xa9day VLC_FOURCC( 0xa9, 'd', 'a', 'y' )
  186. #define FOURCC_0xa9fmt VLC_FOURCC( 0xa9, 'f', 'm', 't' )
  187. #define FOURCC_0xa9prd VLC_FOURCC( 0xa9, 'p', 'r', 'd' )
  188. #define FOURCC_0xa9prf VLC_FOURCC( 0xa9, 'p', 'r', 'f' )
  189. #define FOURCC_0xa9src VLC_FOURCC( 0xa9, 's', 'r', 'c' )
  190. #define FOURCC_0xa9alb VLC_FOURCC( 0xa9, 'a', 'l', 'b' )
  191. #define FOURCC_0xa9dis VLC_FOURCC( 0xa9, 'd', 'i', 's' )
  192. #define FOURCC_0xa9enc VLC_FOURCC( 0xa9, 'e', 'n', 'c' )
  193. #define FOURCC_0xa9trk VLC_FOURCC( 0xa9, 't', 'r', 'k' )
  194. #define FOURCC_0xa9url VLC_FOURCC( 0xa9, 'u', 'r', 'l' )
  195. #define FOURCC_0xa9dsa VLC_FOURCC( 0xa9, 'd', 's', 'a' )
  196. #define FOURCC_0xa9hst VLC_FOURCC( 0xa9, 'h', 's', 't' )
  197. #define FOURCC_0xa9ope VLC_FOURCC( 0xa9, 'o', 'p', 'e' )
  198. #define FOURCC_0xa9wrt VLC_FOURCC( 0xa9, 'w', 'r', 't' )
  199. #define FOURCC_0xa9com VLC_FOURCC( 0xa9, 'c', 'o', 'm' )
  200. #define FOURCC_0xa9gen VLC_FOURCC( 0xa9, 'g', 'e', 'n' )
  201. #define FOURCC_chpl VLC_FOURCC( 'c', 'h', 'p', 'l' )
  202. #define FOURCC_WLOC VLC_FOURCC( 'W', 'L', 'O', 'C' )
  203. #define FOURCC_meta VLC_FOURCC( 'm', 'e', 't', 'a' )
  204. #define FOURCC_ilst VLC_FOURCC( 'i', 'l', 's', 't' )
  205. #define FOURCC_chap VLC_FOURCC( 'c', 'h', 'a', 'p' )
  206. /* Do you want some debug information on all read boxes ? */
  207. #define MP4_VERBOSE  1
  208. struct MP4_Box_s;
  209. /* uuid Universal Unique IDentifiers */
  210. typedef struct UUID_s
  211. {
  212.     uint8_t b[16];
  213. } UUID_t;
  214. /* specific structure for all boxes */
  215. typedef struct MP4_Box_data_ftyp_s
  216. {
  217.     uint32_t i_major_brand;
  218.     uint32_t i_minor_version;
  219.     uint32_t i_compatible_brands_count;
  220.     uint32_t *i_compatible_brands;
  221. } MP4_Box_data_ftyp_t;
  222. typedef struct MP4_Box_data_mvhd_s
  223. {
  224.     uint8_t  i_version;
  225.     uint32_t i_flags;
  226.     uint64_t i_creation_time;
  227.     uint64_t i_modification_time;
  228.     uint32_t i_timescale;
  229.     uint64_t i_duration;
  230.     int32_t  i_rate;
  231.     int16_t  i_volume;
  232.     int16_t  i_reserved1;
  233.     uint32_t i_reserved2[2];
  234.     int32_t  i_matrix[9];
  235.     uint32_t i_predefined[6];
  236.     uint32_t i_next_track_id;
  237. } MP4_Box_data_mvhd_t;
  238. #define MP4_TRACK_ENABLED    0x000001
  239. #define MP4_TRACK_IN_MOVIE   0x000002
  240. #define MP4_TRACK_IN_PREVIEW 0x000004
  241. typedef struct MP4_Box_data_tkhd_s
  242. {
  243.     uint8_t  i_version;
  244.     uint32_t i_flags;
  245.     uint64_t i_creation_time;
  246.     uint64_t i_modification_time;
  247.     uint32_t i_track_ID;
  248.     uint32_t i_reserved;
  249.     uint64_t i_duration;
  250.     uint32_t i_reserved2[2];
  251.     int16_t  i_layer;
  252.     int16_t  i_predefined;
  253.     int16_t  i_volume;
  254.     uint16_t i_reserved3;
  255.     int32_t  i_matrix[9];
  256.     int32_t  i_width;
  257.     int32_t  i_height;
  258. } MP4_Box_data_tkhd_t;
  259. typedef struct MP4_Box_data_mdhd_s
  260. {
  261.     uint8_t  i_version;
  262.     uint32_t i_flags;
  263.     uint64_t i_creation_time;
  264.     uint64_t i_modification_time;
  265.     uint32_t i_timescale;
  266.     uint64_t i_duration;
  267.     /* one bit for pad */
  268.     uint16_t      i_language_code;
  269.     /* unsigned int(5)[3] language difference with 0x60*/
  270.     unsigned char i_language[3];
  271.     uint16_t i_predefined;
  272. } MP4_Box_data_mdhd_t;
  273. typedef struct MP4_Box_data_hdlr_s
  274. {
  275.     uint8_t  i_version;
  276.     uint32_t i_flags;
  277.     uint32_t i_predefined;
  278.     uint32_t i_handler_type; /* "vide" "soun" "hint" "odsm"
  279.                            "crsm" "sdsm" "m7sm" "ocsm"
  280.                            "ipsm" "mjsm" */
  281.     unsigned char *psz_name; /* in UTF-8 */
  282. } MP4_Box_data_hdlr_t;
  283. typedef struct MP4_Box_data_vmhd_s
  284. {
  285.     uint8_t  i_version;
  286.     uint32_t i_flags;
  287.     int16_t  i_graphics_mode;
  288.     int16_t  i_opcolor[3];
  289. } MP4_Box_data_vmhd_t;
  290. typedef struct MP4_Box_data_smhd_s
  291. {
  292.     uint8_t  i_version;
  293.     uint32_t i_flags;
  294.     int16_t  i_balance;
  295.     int16_t  i_reserved;
  296. } MP4_Box_data_smhd_t;
  297. typedef struct MP4_Box_data_hmhd_s
  298. {
  299.     uint8_t  i_version;
  300.     uint32_t i_flags;
  301.     uint16_t i_max_PDU_size;
  302.     uint16_t i_avg_PDU_size;
  303.     uint32_t i_max_bitrate;
  304.     uint32_t i_avg_bitrate;
  305.     uint32_t i_reserved;
  306. } MP4_Box_data_hmhd_t;
  307. typedef struct MP4_Box_data_url_s
  308. {
  309.     uint8_t  i_version;
  310.     uint32_t i_flags;
  311.     char *psz_location;
  312. } MP4_Box_data_url_t;
  313. typedef struct MP4_Box_data_urn_s
  314. {
  315.     uint8_t  i_version;
  316.     uint32_t i_flags;
  317.     char *psz_name;
  318.     char *psz_location;
  319. } MP4_Box_data_urn_t;
  320. typedef struct MP4_Box_data_dref_s
  321. {
  322.     uint8_t  i_version;
  323.     uint32_t i_flags;
  324.     uint32_t i_entry_count;
  325. /* XXX it's also a container with i_entry_count entry */
  326. } MP4_Box_data_dref_t;
  327. typedef struct MP4_Box_data_stts_s
  328. {
  329.     uint8_t  i_version;
  330.     uint32_t i_flags;
  331.     uint32_t i_entry_count;
  332.     uint32_t *i_sample_count; /* these are array */
  333.     int32_t  *i_sample_delta;
  334. } MP4_Box_data_stts_t;
  335. typedef struct MP4_Box_data_ctts_s
  336. {
  337.     uint8_t  i_version;
  338.     uint32_t i_flags;
  339.     uint32_t i_entry_count;
  340.     uint32_t *i_sample_count; /* these are array */
  341.     int32_t  *i_sample_offset;
  342. } MP4_Box_data_ctts_t;
  343. typedef struct MP4_Box_data_sample_soun_s
  344. {
  345.     uint8_t  i_reserved1[6];
  346.     uint16_t i_data_reference_index;
  347.     //uint32_t i_reserved2[2];
  348.     uint16_t i_qt_version;
  349.     uint16_t i_qt_revision_level;
  350.     uint32_t i_qt_vendor;
  351.     uint16_t i_channelcount;
  352.     uint16_t i_samplesize;
  353.     uint16_t i_predefined;
  354.     uint16_t i_reserved3;
  355.     uint16_t i_sampleratehi; /* timescale of track */
  356.     uint16_t i_sampleratelo;
  357.     /* for version 1 (i_reserved1[0] == 1) */
  358.     uint32_t i_sample_per_packet;
  359.     uint32_t i_bytes_per_packet;
  360.     uint32_t i_bytes_per_frame;
  361.     uint32_t i_bytes_per_sample;
  362.     /* XXX hack */
  363.     int     i_qt_description;
  364.     uint8_t *p_qt_description;
  365.     void    *p_drms;
  366. } MP4_Box_data_sample_soun_t;
  367. typedef struct MP4_Box_data_sample_vide_s
  368. {
  369.     uint8_t  i_reserved1[6];
  370.     uint16_t i_data_reference_index;
  371.     uint16_t i_qt_version;
  372.     uint16_t i_qt_revision_level;
  373.     uint32_t i_qt_vendor;
  374.     uint32_t i_qt_temporal_quality;
  375.     uint32_t i_qt_spatial_quality;
  376.     int16_t  i_width;
  377.     int16_t  i_height;
  378.     uint32_t i_horizresolution;
  379.     uint32_t i_vertresolution;
  380.     uint32_t i_qt_data_size;
  381.     uint16_t i_qt_frame_count;
  382.     uint8_t  i_compressorname[32];
  383.     int16_t  i_depth;
  384.     int16_t  i_qt_color_table;
  385.     /* XXX hack ImageDescription */
  386.     int     i_qt_image_description;
  387.     uint8_t *p_qt_image_description;
  388.     void    *p_drms;
  389. } MP4_Box_data_sample_vide_t;
  390. #define MP4_TEXT_DISPLAY_FLAG_DONT_DISPLAY       (1<<0)
  391. #define MP4_TEXT_DISPLAY_FLAG_AUTO_SCALE         (1<<1)
  392. #define MP4_TEXT_DISPLAY_FLAG_CLIP_TO_TEXT_BOX   (1<<2)
  393. #define MP4_TEXT_DISPLAY_FLAG_USE_MOVIE_BG_COLOR (1<<3)
  394. #define MP4_TEXT_DISPLAY_FLAG_SHRINK_TEXT_BOX_TO_FIT (1<<4)
  395. #define MP4_TEXT_DISPLAY_FLAG_SCROLL_IN          (1<<5)
  396. #define MP4_TEXT_DISPLAY_FLAG_SCROLL_OUT         (1<<6)
  397. #define MP4_TEXT_DISPLAY_FLAG_HORIZONTAL_SCROLL  (1<<7)
  398. #define MP4_TEXT_DISPLAY_FLAG_REVERSE_SCROLL     (1<<8)
  399. #define MP4_TEXT_DISPLAY_FLAG_CONTINUOUS_SCROLL  (1<<9)
  400. #define MP4_TEXT_DISPLAY_FLAG_FLOW_HORIZONTAL    (1<<10)
  401. #define MP4_TEXT_DISPLAY_FLAG_CONTINUOUS_KARAOKE (1<<11)
  402. #define MP4_TEXT_DISPLAY_FLAG_DROP_SHADOW        (1<<12)
  403. #define MP4_TEXT_DISPLAY_FLAG_ANTI_ALIAS         (1<<13)
  404. #define MP4_TEXT_DISPLAY_FLAG_KEYED_TEXT         (1<<14)
  405. #define MP4_TEXT_DISPLAY_FLAG_INVERSE_HILITE     (1<<15)
  406. #define MP4_TEXT_DISPLAY_FLAG_COLOR_HILITE       (1<<16)
  407. #define MP4_TEXT_DISPLAY_FLAG_WRITE_VERTICALLY   (1<<17)
  408. typedef struct
  409. {
  410.     uint32_t i_reserved1;
  411.     uint16_t i_reserved2;
  412.     uint16_t i_data_reference_index;
  413.     uint32_t i_display_flags;   // TextDescription and Tx3gDescription
  414.     int8_t i_justification_horizontal; // left(0), centered(1), right(-1)
  415.     int8_t i_justification_vertical;   // top(0), centered(1), bottom(-1)
  416.     uint16_t i_background_color[4];
  417.     uint16_t i_text_box_top;
  418.     uint16_t i_text_box_left;
  419.     uint16_t i_text_box_bottom;
  420.     uint16_t i_text_box_right;
  421.     // TODO to complete
  422. } MP4_Box_data_sample_text_t;
  423. typedef struct MP4_Box_data_sample_hint_s
  424. {
  425.     uint8_t  i_reserved1[6];
  426.     uint16_t i_data_reference_index;
  427.     uint8_t *p_data;
  428. } MP4_Box_data_sample_hint_t;
  429. typedef struct MP4_Box_data_moviehintinformation_rtp_s
  430. {
  431.     uint32_t i_description_format;
  432.     unsigned char *psz_text;
  433. } MP4_Box_data_moviehintinformation_rtp_t;
  434. typedef struct MP4_Box_data_stsd_s
  435. {
  436.     uint8_t  i_version;
  437.     uint32_t i_flags;
  438.     uint32_t i_entry_count;
  439.     /* it contains SampleEntry handled as if it was Box */
  440. } MP4_Box_data_stsd_t;
  441. typedef struct MP4_Box_data_stsz_s
  442. {
  443.     uint8_t  i_version;
  444.     uint32_t i_flags;
  445.     uint32_t i_sample_size;
  446.     uint32_t i_sample_count;
  447.     uint32_t *i_entry_size; /* array , empty if i_sample_size != 0 */
  448. } MP4_Box_data_stsz_t;
  449. typedef struct MP4_Box_data_stz2_s
  450. {
  451.     uint8_t  i_version;
  452.     uint32_t i_flags;
  453.     uint32_t i_sample_size; /* 24 bits */
  454.     uint8_t  i_field_size;
  455.     uint32_t i_sample_count;
  456.     uint32_t *i_entry_size; /* array: unsigned int(i_field_size) entry_size */
  457. } MP4_Box_data_stz2_t;
  458. typedef struct MP4_Box_data_stsc_s
  459. {
  460.     uint8_t  i_version;
  461.     uint32_t i_flags;
  462.     uint32_t i_entry_count;
  463.     uint32_t *i_first_chunk; /* theses are arrays */
  464.     uint32_t *i_samples_per_chunk;
  465.     uint32_t *i_sample_description_index;
  466. } MP4_Box_data_stsc_t;
  467. typedef struct MP4_Box_data_co64_s
  468. {
  469.     uint8_t  i_version;
  470.     uint32_t i_flags;
  471.     uint32_t i_entry_count;
  472.     uint64_t *i_chunk_offset;
  473. } MP4_Box_data_co64_t;
  474. typedef struct MP4_Box_data_stss_s
  475. {
  476.     uint8_t  i_version;
  477.     uint32_t i_flags;
  478.     uint32_t i_entry_count;
  479.     uint32_t *i_sample_number;
  480. } MP4_Box_data_stss_t;
  481. typedef struct MP4_Box_data_stsh_s
  482. {
  483.     uint8_t  i_version;
  484.     uint32_t i_flags;
  485.     uint32_t i_entry_count;
  486.     uint32_t *i_shadowed_sample_number;
  487.     uint32_t *i_sync_sample_number;
  488. } MP4_Box_data_stsh_t;
  489. typedef struct MP4_Box_data_stdp_s
  490. {
  491.     uint8_t  i_version;
  492.     uint32_t i_flags;
  493.     uint16_t *i_priority;
  494. } MP4_Box_data_stdp_t;
  495. typedef struct MP4_Box_data_padb_s
  496. {
  497.     uint8_t  i_version;
  498.     uint32_t i_flags;
  499.     uint32_t i_sample_count;
  500.     uint16_t *i_reserved1;   /* 1bit  */
  501.     uint16_t *i_pad2;        /* 3bits */
  502.     uint16_t *i_reserved2;   /* 1bit  */
  503.     uint16_t *i_pad1;        /* 3bits */
  504. } MP4_Box_data_padb_t;
  505. typedef struct MP4_Box_data_elst_s
  506. {
  507.     uint8_t  i_version;
  508.     uint32_t i_flags;
  509.     uint32_t i_entry_count;
  510.     uint64_t *i_segment_duration;
  511.     int64_t  *i_media_time;
  512.     uint16_t *i_media_rate_integer;
  513.     uint16_t *i_media_rate_fraction;
  514. } MP4_Box_data_elst_t;
  515. typedef struct MP4_Box_data_cprt_s
  516. {
  517.     uint8_t  i_version;
  518.     uint32_t i_flags;
  519.     /* 1 pad bit */
  520.     unsigned char i_language[3];
  521.     char *psz_notice;
  522. } MP4_Box_data_cprt_t;
  523. /* DecoderConfigDescriptor */
  524. typedef struct MP4_descriptor_decoder_config_s
  525. {
  526.     uint8_t i_objectTypeIndication;
  527.     uint8_t i_streamType;
  528.     int     b_upStream;
  529.     int     i_buffer_sizeDB;
  530.     int     i_max_bitrate;
  531.     int     i_avg_bitrate;
  532.     int     i_decoder_specific_info_len;
  533.     uint8_t *p_decoder_specific_info;
  534.     /* some other stuff */
  535. } MP4_descriptor_decoder_config_t;
  536. typedef struct MP4_descriptor_SL_config_s
  537. {
  538.     int i_dummy; /* ANSI C forbids empty structures */
  539. } MP4_descriptor_SL_config_t;
  540. typedef struct MP4_descriptor_ES_s
  541. {
  542.     uint16_t i_ES_ID;
  543.     int      b_stream_dependence;
  544.     int      b_url;
  545.     int      b_OCRstream;
  546.     int      i_stream_priority;
  547.     int      i_depend_on_ES_ID; /* if b_stream_dependence set */
  548.     unsigned char *psz_URL;
  549.     uint16_t i_OCR_ES_ID;       /* if b_OCRstream */
  550.     MP4_descriptor_decoder_config_t *p_decConfigDescr;
  551.     MP4_descriptor_SL_config_t *p_slConfigDescr;
  552.     /* some other stuff ... */
  553. } MP4_descriptor_ES_t;
  554. /* ES descriptor */
  555. typedef struct MP4_Box_data_esds_s
  556. {
  557.     uint8_t  i_version;
  558.     uint32_t i_flags;
  559.     MP4_descriptor_ES_t es_descriptor;
  560. } MP4_Box_data_esds_t;
  561. typedef struct MP4_Box_data_dcom_s
  562. {
  563.     uint32_t i_algorithm; /* fourcc */
  564. } MP4_Box_data_dcom_t;
  565. typedef struct MP4_Box_data_cmvd_s
  566. {
  567.     uint32_t i_uncompressed_size;
  568.     uint32_t i_compressed_size;
  569.     int     b_compressed; /* Set to 1 if compressed data, 0 if uncompressed */
  570.     uint8_t *p_data;
  571. } MP4_Box_data_cmvd_t;
  572. typedef struct MP4_Box_data_cmov_s
  573. {
  574.     struct MP4_Box_s *p_moov; /* uncompressed moov */
  575. } MP4_Box_data_cmov_t;
  576. typedef struct
  577. {
  578.     uint32_t i_type;
  579. } MP4_Box_data_frma_t;
  580. typedef struct
  581. {
  582.     uint32_t i_init;
  583.     uint32_t i_encr;
  584.     uint32_t i_decr;
  585. } MP4_Box_data_skcr_t;
  586. typedef struct
  587. {
  588.     uint8_t  i_version;
  589.     uint32_t i_flags;
  590.     uint32_t i_ref_type;
  591.     char     *psz_ref;
  592. } MP4_Box_data_rdrf_t;
  593. typedef struct
  594. {
  595.     uint8_t  i_version;
  596.     uint32_t i_flags;
  597.     uint32_t i_rate;
  598. } MP4_Box_data_rmdr_t;
  599. typedef struct
  600. {
  601.     uint8_t  i_version;
  602.     uint32_t i_flags;
  603.     uint32_t i_gestaltType;
  604.     uint32_t i_val1;
  605.     uint32_t i_val2;
  606.     uint16_t i_checkType;   /* 0: val1 is version min
  607.                                1: gestalt value & val2 == val1 */
  608. } MP4_Box_data_rmvc_t;
  609. typedef struct
  610. {
  611.     uint8_t  i_version;
  612.     uint32_t i_flags;
  613. } MP4_Box_data_rmcd_t;
  614. typedef struct
  615. {
  616.     uint32_t i_quality;
  617. } MP4_Box_data_rmqu_t;
  618. typedef struct
  619. {
  620.     char *psz_text;
  621. } MP4_Box_data_0xa9xxx_t;
  622. typedef struct
  623. {
  624.     uint32_t i_entry_count;
  625.     uint32_t *i_track_ID;
  626. } MP4_Box_data_tref_generic_t;
  627. typedef struct
  628. {
  629.     uint8_t  i_version;
  630.     uint32_t i_flags;
  631.     uint8_t i_chapter;
  632.     struct
  633.     {
  634.         char    *psz_name;
  635.         int64_t  i_start;
  636.     } chapter[256];
  637. } MP4_Box_data_chpl_t;
  638. typedef struct
  639. {
  640.     uint8_t i_version;
  641.     uint8_t i_profile;
  642.     uint8_t i_profile_compatibility;
  643.     uint8_t i_level;
  644.     uint8_t i_reserved1;     /* 6 bits */
  645.     uint8_t i_length_size;
  646.     uint8_t i_reserved2;    /* 3 bits */
  647.     uint8_t  i_sps;
  648.     uint16_t *i_sps_length;
  649.     uint8_t  **sps;
  650.     uint8_t  i_pps;
  651.     uint16_t *i_pps_length;
  652.     uint8_t  **pps;
  653.     /* XXX: Hack raw avcC atom payload */
  654.     int     i_avcC;
  655.     uint8_t *p_avcC;
  656. } MP4_Box_data_avcC_t;
  657. typedef struct
  658. {
  659.     uint8_t i_fscod;
  660.     uint8_t i_bsid;
  661.     uint8_t i_bsmod;
  662.     uint8_t i_acmod;
  663.     uint8_t i_lfeon;
  664.     uint8_t i_bitrate_code;
  665. } MP4_Box_data_dac3_t;
  666. /*
  667. typedef struct MP4_Box_data__s
  668. {
  669.     uint8_t  i_version;
  670.     uint32_t i_flags;
  671. } MP4_Box_data__t;
  672. */
  673. typedef union MP4_Box_data_s
  674. {
  675.     MP4_Box_data_ftyp_t *p_ftyp;
  676.     MP4_Box_data_mvhd_t *p_mvhd;
  677.     MP4_Box_data_tkhd_t *p_tkhd;
  678.     MP4_Box_data_mdhd_t *p_mdhd;
  679.     MP4_Box_data_hdlr_t *p_hdlr;
  680.     MP4_Box_data_vmhd_t *p_vmhd;
  681.     MP4_Box_data_smhd_t *p_smhd;
  682.     MP4_Box_data_hmhd_t *p_hmhd;
  683.     MP4_Box_data_url_t  *p_url;
  684.     MP4_Box_data_urn_t  *p_urn;
  685.     MP4_Box_data_dref_t *p_dref;
  686.     MP4_Box_data_stts_t *p_stts;
  687.     MP4_Box_data_ctts_t *p_ctts;
  688.     MP4_Box_data_stsd_t *p_stsd;
  689.         MP4_Box_data_sample_vide_t *p_sample_vide;
  690.         MP4_Box_data_sample_soun_t *p_sample_soun;
  691.         MP4_Box_data_sample_text_t *p_sample_text;
  692.         MP4_Box_data_sample_hint_t *p_sample_hint;
  693.         MP4_Box_data_esds_t *p_esds;
  694.         MP4_Box_data_avcC_t *p_avcC;
  695.         MP4_Box_data_dac3_t *p_dac3;
  696.     MP4_Box_data_stsz_t *p_stsz;
  697.     MP4_Box_data_stz2_t *p_stz2;
  698.     MP4_Box_data_stsc_t *p_stsc;
  699.     MP4_Box_data_co64_t *p_co64;
  700.     MP4_Box_data_stss_t *p_stss;
  701.     MP4_Box_data_stsh_t *p_stsh;
  702.     MP4_Box_data_stdp_t *p_stdp;
  703.     MP4_Box_data_padb_t *p_padb;
  704.     MP4_Box_data_elst_t *p_elst;
  705.     MP4_Box_data_cprt_t *p_cprt;
  706.     MP4_Box_data_dcom_t *p_dcom;
  707.     MP4_Box_data_cmvd_t *p_cmvd;
  708.     MP4_Box_data_cmov_t *p_cmov;
  709.     MP4_Box_data_moviehintinformation_rtp_t p_moviehintinformation_rtp;
  710.     MP4_Box_data_frma_t *p_frma;
  711.     MP4_Box_data_skcr_t *p_skcr;
  712.     MP4_Box_data_rdrf_t *p_rdrf;
  713.     MP4_Box_data_rmdr_t *p_rmdr;
  714.     MP4_Box_data_rmqu_t *p_rmqu;
  715.     MP4_Box_data_rmvc_t *p_rmvc;
  716.     MP4_Box_data_0xa9xxx_t *p_0xa9xxx;
  717.     MP4_Box_data_chpl_t *p_chpl;
  718.     MP4_Box_data_tref_generic_t *p_tref_generic;
  719.     void                *p_data; /* for unknow type */
  720. } MP4_Box_data_t;
  721. /* the most basic structure */
  722. typedef struct MP4_Box_s
  723. {
  724.     off_t        i_pos;      /* absolute position */
  725.     uint32_t     i_type;
  726.     uint32_t     i_shortsize;
  727.     UUID_t       i_uuid;  /* Set if i_type == "uuid" */
  728.     uint64_t     i_size; /* always set so use it */
  729.     MP4_Box_data_t   data;   /* union of pointers on extended data depending
  730.                                 on i_type (or i_usertype) */
  731.     struct MP4_Box_s *p_father; /* pointer on the father Box */
  732.     struct MP4_Box_s *p_first;  /* pointer on the first child Box */
  733.     struct MP4_Box_s *p_last;
  734.     struct MP4_Box_s *p_next;   /* pointer on the next boxes at the same level */
  735. } MP4_Box_t;
  736. /*****************************************************************************
  737.  * MP4_BoxGetRoot : Parse the entire file, and create all boxes in memory
  738.  *****************************************************************************
  739.  *  The first box is a virtual box "root" and is the father for all first
  740.  *  level boxes
  741.  *****************************************************************************/
  742. MP4_Box_t *MP4_BoxGetRoot( stream_t * );
  743. /*****************************************************************************
  744.  * MP4_FreeBox : free memory allocated after read with MP4_ReadBox
  745.  *               or MP4_BoxGetRoot, this means also children boxes
  746.  * XXX : all children have to be allocated by a malloc !! and
  747.  *         p_box is freed
  748.  *****************************************************************************/
  749. void MP4_BoxFree( stream_t *, MP4_Box_t *p_box );
  750. /*****************************************************************************
  751.  * MP4_DumpBoxStructure: print the structure of the p_box
  752.  *****************************************************************************
  753.  * Usefull while debugging
  754.  *****************************************************************************/
  755. void MP4_BoxDumpStructure( stream_t *p_input, MP4_Box_t *p_box );
  756. /*****************************************************************************
  757.  * MP4_BoxGet: find a box given a path relative to p_box
  758.  *****************************************************************************
  759.  * Path Format: . .. / as usual
  760.  *              [number] to specifie box number ex: trak[12]
  761.  *
  762.  * ex: /moov/trak[12]
  763.  *     ../mdia
  764.  *****************************************************************************/
  765. MP4_Box_t *MP4_BoxGet( MP4_Box_t *p_box, const char *psz_fmt, ... );
  766. /*****************************************************************************
  767.  * MP4_BoxCount: find number of box given a path relative to p_box
  768.  *****************************************************************************
  769.  * Path Format: . .. / as usual
  770.  *              [number] to specifie box number ex: trak[12]
  771.  *
  772.  * ex: /moov/trak
  773.  *     ../mdia
  774.  *****************************************************************************/
  775. int MP4_BoxCount( MP4_Box_t *p_box, const char *psz_fmt, ... );
  776. int MP4_ReadBoxCommon( stream_t *p_stream, MP4_Box_t *p_box );
  777. int MP4_ReadBox_sample_vide( stream_t *p_stream, MP4_Box_t *p_box );
  778. void MP4_FreeBox_sample_vide( MP4_Box_t *p_box );
  779. #endif