Ap4EsDescriptor.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:7k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - ES Descriptors
  4. |
  5. |    Copyright 2002 Gilles Boccon-Gibod
  6. |
  7. |
  8. |    This file is part of Bento4/AP4 (MP4 Atom Processing Library).
  9. |
  10. |    Unless you have obtained Bento4 under a difference license,
  11. |    this version of Bento4 is Bento4|GPL.
  12. |    Bento4|GPL is free software; you can redistribute it and/or modify
  13. |    it under the terms of the GNU General Public License as published by
  14. |    the Free Software Foundation; either version 2, or (at your option)
  15. |    any later version.
  16. |
  17. |    Bento4|GPL is distributed in the hope that it will be useful,
  18. |    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. |    GNU General Public License for more details.
  21. |
  22. |    You should have received a copy of the GNU General Public License
  23. |    along with Bento4|GPL; see the file COPYING.  If not, write to the
  24. |    Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  25. |    02111-1307, USA.
  26. |
  27.  ****************************************************************/
  28. /*----------------------------------------------------------------------
  29. |       includes
  30. +---------------------------------------------------------------------*/
  31. #include "Ap4.h"
  32. #include "Ap4EsDescriptor.h"
  33. #include "Ap4DescriptorFactory.h"
  34. #include "Ap4Utils.h"
  35. /*----------------------------------------------------------------------
  36. |       AP4_EsDescriptor::AP4_EsDescriptor
  37. +---------------------------------------------------------------------*/
  38. AP4_EsDescriptor::AP4_EsDescriptor(AP4_UI16 es_id) :
  39.     AP4_Descriptor(AP4_DESCRIPTOR_TAG_ES, 2, 2+1),
  40.     m_EsId(es_id),
  41.     m_OcrEsId(0),
  42.     m_Flags(0),
  43.     m_StreamPriority(0),
  44.     m_DependsOn(0)
  45. {
  46. }
  47. /*----------------------------------------------------------------------
  48. |       AP4_EsDescriptor::AP4_EsDescriptor
  49. +---------------------------------------------------------------------*/
  50. AP4_EsDescriptor::AP4_EsDescriptor(AP4_ByteStream& stream, 
  51.                                    AP4_Size        header_size,
  52.                                    AP4_Size        payload_size) :
  53.     AP4_Descriptor(AP4_DESCRIPTOR_TAG_ES, header_size, payload_size)
  54. {
  55.     AP4_Offset start;
  56.     stream.Tell(start);
  57.     // read descriptor fields
  58.     stream.ReadUI16(m_EsId);
  59.     unsigned char bits;
  60.     stream.ReadUI08(bits);
  61.     m_Flags = (bits>>5)&7;
  62.     m_StreamPriority = bits&0x1F;
  63.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_STREAM_DEPENDENCY) {
  64.         stream.ReadUI16(m_DependsOn);
  65.     }  else {
  66.         m_DependsOn = 0;
  67.     }
  68.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_URL) {
  69.         unsigned char url_length;
  70.         stream.ReadUI08(url_length);
  71.         if (url_length) {
  72.             char* url = new char[url_length+1];
  73.             if (url) {
  74.                 stream.Read(url, url_length, NULL);
  75.                 url[url_length] = '';
  76.                 m_Url = url;
  77.                 delete[] url;
  78.             }
  79.         }
  80.     }
  81.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_URL) {
  82.         stream.ReadUI16(m_OcrEsId);
  83.     } else {
  84.         m_OcrEsId = 0;
  85.     }
  86.     // read other descriptors
  87.     AP4_Offset offset;
  88.     stream.Tell(offset);
  89.     AP4_SubStream* substream = new AP4_SubStream(stream, offset, 
  90.                                                  payload_size-(offset-start));
  91.     AP4_Descriptor* descriptor = NULL;
  92.     while (AP4_DescriptorFactory::CreateDescriptorFromStream(*substream, 
  93.                                                              descriptor) 
  94.            == AP4_SUCCESS) {
  95.         m_SubDescriptors.Add(descriptor);
  96.     }
  97.     substream->Release();
  98. }
  99. /*----------------------------------------------------------------------
  100. |       AP4_EsDescriptor::~AP4_EsDescriptor
  101. +---------------------------------------------------------------------*/
  102. AP4_EsDescriptor::~AP4_EsDescriptor()
  103. {
  104.     m_SubDescriptors.DeleteReferences();
  105. }
  106. /*----------------------------------------------------------------------
  107. |       AP4_EsDescriptor::WriteFields
  108. +---------------------------------------------------------------------*/
  109. AP4_Result
  110. AP4_EsDescriptor::WriteFields(AP4_ByteStream& stream)
  111. {
  112.     AP4_Result result;
  113.     // es id
  114.     result = stream.WriteUI16(m_EsId);
  115.     if (AP4_FAILED(result)) return result;
  116.     // flags and other bits
  117.     AP4_UI08 bits = m_StreamPriority | (AP4_UI08)(m_Flags<<5);
  118.     result = stream.WriteUI08(bits);
  119.     if (AP4_FAILED(result)) return result;
  120.     
  121.     // optional fields
  122.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_STREAM_DEPENDENCY) {
  123.         result = stream.WriteUI16(m_DependsOn);
  124.         if (AP4_FAILED(result)) return result;
  125.     }
  126.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_URL) {
  127.         result = stream.WriteUI08(m_Url.length());
  128.         if (AP4_FAILED(result)) return result;
  129.         result = stream.WriteString(m_Url.c_str());
  130.         if (AP4_FAILED(result)) return result;
  131.         result = stream.WriteUI08(0);
  132.         if (AP4_FAILED(result)) return result;
  133.     }
  134.     if (m_Flags & AP4_ES_DESCRIPTOR_FLAG_OCR_STREAM) {
  135.         result = stream.WriteUI16(m_OcrEsId);
  136.         if (AP4_FAILED(result)) return result;
  137.     }
  138.     // write the sub descriptors
  139.     m_SubDescriptors.Apply(AP4_DescriptorListWriter(stream));
  140.     return AP4_SUCCESS;
  141. }
  142. /*----------------------------------------------------------------------
  143. |       AP4_EsDescriptor::Inspect
  144. +---------------------------------------------------------------------*/
  145. AP4_Result
  146. AP4_EsDescriptor::Inspect(AP4_AtomInspector& inspector)
  147. {
  148.     char info[64];
  149.     AP4_StringFormat(info, sizeof(info), "size=%ld+%ld", 
  150.                      GetHeaderSize(),m_PayloadSize);
  151.     inspector.StartElement("#[ES]", info);
  152.     inspector.AddField("es_id", m_EsId);
  153.     inspector.AddField("stream_priority", m_StreamPriority);
  154.     // inspect children
  155.     m_SubDescriptors.Apply(AP4_DescriptorListInspector(inspector));
  156.     inspector.EndElement();
  157.     return AP4_SUCCESS;
  158. }
  159. /*----------------------------------------------------------------------
  160. |       AP4_EsDescriptor::AddSubDescriptor
  161. +---------------------------------------------------------------------*/
  162. AP4_Result
  163. AP4_EsDescriptor::AddSubDescriptor(AP4_Descriptor* descriptor)
  164. {
  165.     m_SubDescriptors.Add(descriptor);
  166.     m_PayloadSize += descriptor->GetSize();
  167.     return AP4_SUCCESS;
  168. }
  169. /*----------------------------------------------------------------------
  170. |       AP4_EsDescriptor::GetDecoderConfigDescriptor
  171. +---------------------------------------------------------------------*/
  172. const AP4_DecoderConfigDescriptor*
  173. AP4_EsDescriptor::GetDecoderConfigDescriptor() const
  174. {
  175.     // find the decoder config descriptor
  176.     AP4_Descriptor* descriptor = NULL;
  177.     AP4_Result result = 
  178.         m_SubDescriptors.Find(AP4_DescriptorFinder(AP4_DESCRIPTOR_TAG_DECODER_CONFIG),
  179.                               descriptor);
  180.     
  181.     // return it
  182.     if (AP4_SUCCEEDED(result)) {
  183.         return dynamic_cast<AP4_DecoderConfigDescriptor*>(descriptor);
  184.     } else {
  185.         return NULL;
  186.     }
  187. }