atom_tkhd.cpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  */
  21. #include "mp4common.h"
  22. MP4TkhdAtom::MP4TkhdAtom() 
  23. : MP4Atom("tkhd")
  24. {
  25. AddVersionAndFlags();
  26. }
  27. void MP4TkhdAtom::AddProperties(u_int8_t version) 
  28. {
  29. if (version == 1) {
  30. AddProperty( /* 2 */
  31. new MP4Integer64Property("creationTime"));
  32. AddProperty( /* 3 */
  33. new MP4Integer64Property("modificationTime"));
  34. } else { // version == 0
  35. AddProperty( /* 2 */
  36. new MP4Integer32Property("creationTime"));
  37. AddProperty( /* 3 */
  38. new MP4Integer32Property("modificationTime"));
  39. }
  40. AddProperty( /* 4 */
  41. new MP4Integer32Property("trackId"));
  42. AddReserved("reserved1", 4); /* 5 */
  43. if (version == 1) {
  44. AddProperty( /* 6 */
  45. new MP4Integer64Property("duration"));
  46. } else {
  47. AddProperty( /* 6 */
  48. new MP4Integer32Property("duration"));
  49. }
  50. AddReserved("reserved2", 12); /* 7 */
  51. MP4Float32Property* pProp;
  52. pProp = new MP4Float32Property("volume");
  53. pProp->SetFixed16Format();
  54. AddProperty(pProp); /* 8 */
  55. AddReserved("reserved3", 38); /* 9 */
  56. pProp = new MP4Float32Property("width");
  57. pProp->SetFixed32Format();
  58. AddProperty(pProp); /* 10 */
  59. pProp = new MP4Float32Property("height");
  60. pProp->SetFixed32Format();
  61. AddProperty(pProp); /* 11 */
  62. }
  63. void MP4TkhdAtom::Generate() 
  64. {
  65. u_int8_t version = m_pFile->Use64Bits() ? 1 : 0;
  66. SetVersion(version);
  67. AddProperties(version);
  68. MP4Atom::Generate();
  69. // set creation and modification times
  70. MP4Timestamp now = MP4GetAbsTimestamp();
  71. if (version == 1) {
  72. ((MP4Integer64Property*)m_pProperties[2])->SetValue(now);
  73. ((MP4Integer64Property*)m_pProperties[3])->SetValue(now);
  74. } else {
  75. ((MP4Integer32Property*)m_pProperties[2])->SetValue(now);
  76. ((MP4Integer32Property*)m_pProperties[3])->SetValue(now);
  77. }
  78. // property reserved3 has non-zero fixed values
  79. static u_int8_t reserved3[38] = {
  80. 0x00, 0x00, 
  81. 0x00, 0x01, 0x00, 0x00, 
  82. 0x00, 0x00, 0x00, 0x00, 
  83. 0x00, 0x00, 0x00, 0x00, 
  84. 0x00, 0x00, 0x00, 0x00, 
  85. 0x00, 0x01, 0x00, 0x00, 
  86. 0x00, 0x00, 0x00, 0x00, 
  87. 0x00, 0x00, 0x00, 0x00, 
  88. 0x00, 0x00, 0x00, 0x00, 
  89. 0x40, 0x00, 0x00, 0x00, 
  90. };
  91. m_pProperties[9]->SetReadOnly(false);
  92. ((MP4BytesProperty*)m_pProperties[9])->
  93. SetValue(reserved3, sizeof(reserved3));
  94. m_pProperties[9]->SetReadOnly(true);
  95. }
  96. void MP4TkhdAtom::Read() 
  97. {
  98. /* read atom version */
  99. ReadProperties(0, 1);
  100. /* need to create the properties based on the atom version */
  101. AddProperties(GetVersion());
  102. /* now we can read the remaining properties */
  103. ReadProperties(1);
  104. Skip(); // to end of atom
  105. }