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

流媒体/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. MP4ElstAtom::MP4ElstAtom() 
  23. : MP4Atom("elst") 
  24. AddVersionAndFlags();
  25. MP4Integer32Property* pCount = 
  26. new MP4Integer32Property("entryCount"); 
  27. AddProperty(pCount);
  28. MP4TableProperty* pTable = new MP4TableProperty("entries", pCount);
  29. AddProperty(pTable);
  30. }
  31. void MP4ElstAtom::AddProperties(u_int8_t version) 
  32. {
  33. MP4TableProperty* pTable = (MP4TableProperty*)m_pProperties[3];
  34. if (version == 1) {
  35. pTable->AddProperty(
  36. new MP4Integer64Property("segmentDuration"));
  37. pTable->AddProperty(
  38. new MP4Integer64Property("mediaTime"));
  39. } else {
  40. pTable->AddProperty(
  41. new MP4Integer32Property("segmentDuration"));
  42. pTable->AddProperty(
  43. new MP4Integer32Property("mediaTime"));
  44. }
  45. pTable->AddProperty(
  46. new MP4Integer16Property("mediaRate"));
  47. pTable->AddProperty(
  48. new MP4Integer16Property("reserved"));
  49. }
  50. void MP4ElstAtom::Generate() 
  51. {
  52. SetVersion(0);
  53. AddProperties(GetVersion());
  54. MP4Atom::Generate();
  55. }
  56. void MP4ElstAtom::Read() 
  57. {
  58. /* read atom version */
  59. ReadProperties(0, 1);
  60. /* need to create the properties based on the atom version */
  61. AddProperties(GetVersion());
  62. /* now we can read the remaining properties */
  63. ReadProperties(1);
  64. Skip(); // to end of atom
  65. }