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

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - Descriptor Factory
  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 "Ap4DescriptorFactory.h"
  33. #include "Ap4EsDescriptor.h"
  34. #include "Ap4DecoderConfigDescriptor.h"
  35. #include "Ap4DecoderSpecificInfoDescriptor.h"
  36. #include "Ap4SLConfigDescriptor.h"
  37. #include "Ap4UnknownDescriptor.h"
  38. /*----------------------------------------------------------------------
  39. |       AP4_DescriptorFactory::CreateDescriptorFromStream
  40. +---------------------------------------------------------------------*/
  41. AP4_Result
  42. AP4_DescriptorFactory::CreateDescriptorFromStream(AP4_ByteStream&  stream, 
  43.                                                   AP4_Descriptor*& descriptor)
  44. {
  45.     AP4_Result result;
  46.     // NULL by default
  47.     descriptor = NULL;
  48.     // remember current stream offset
  49.     AP4_Offset offset;
  50.     stream.Tell(offset);
  51.     // read descriptor tag
  52.     unsigned char tag;
  53.     result = stream.ReadUI08(tag);
  54.     if (AP4_FAILED(result)) {
  55.         stream.Seek(offset);
  56.         return result;
  57.     }
  58.     
  59.     // read descriptor size
  60.     unsigned long payload_size = 0;
  61.     unsigned int  header_size = 1;
  62.     unsigned int  max  = 4;
  63.     unsigned char ext  = 0;
  64.     do {
  65.         header_size++;
  66.         result = stream.ReadUI08(ext);
  67.         if (AP4_FAILED(result)) {
  68.             stream.Seek(offset);
  69.             return result;
  70.         }
  71.         payload_size = (payload_size<<7) + (ext&0x7F);
  72.     } while (--max && (ext&0x80));
  73.     // create the descriptor
  74.     switch (tag) {
  75.       case AP4_DESCRIPTOR_TAG_ES:
  76.         descriptor = new AP4_EsDescriptor(stream, header_size, payload_size);
  77.         break;
  78.       case AP4_DESCRIPTOR_TAG_DECODER_CONFIG:
  79.         descriptor = new AP4_DecoderConfigDescriptor(stream, header_size, payload_size);
  80.         break;
  81.   case AP4_DESCRIPTOR_TAG_DECODER_SPECIFIC_INFO:
  82.     descriptor = new AP4_DecoderSpecificInfoDescriptor(stream, header_size, payload_size);
  83. break;
  84.           
  85.       case AP4_DESCRIPTOR_TAG_SL_CONFIG:
  86.         if (payload_size != 1) return AP4_ERROR_INVALID_FORMAT;
  87.         descriptor = new AP4_SLConfigDescriptor(header_size);
  88.         break;
  89.       default:
  90.         descriptor = new AP4_UnknownDescriptor(stream, tag, header_size, payload_size);
  91.         break;
  92.     }
  93.     // skip to the end of the descriptor
  94.     stream.Seek(offset+header_size+payload_size);
  95.     return AP4_SUCCESS;
  96. }