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

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - Sample Table Interface
  4. |
  5. |    Copyright 2003-2004 Gilles Boccon-Gibod & Julien Boeuf
  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 "Ap4SampleTable.h"
  32. #include "Ap4ContainerAtom.h"
  33. #include "Ap4StsdAtom.h"
  34. #include "Ap4StszAtom.h"
  35. #include "Ap4StscAtom.h"
  36. #include "Ap4StcoAtom.h"
  37. #include "Ap4SttsAtom.h"
  38. /*----------------------------------------------------------------------
  39. |       AP4_SampleTable::GenerateStblAtom
  40. +---------------------------------------------------------------------*/
  41. AP4_Result 
  42. AP4_SampleTable::GenerateStblAtom(AP4_ContainerAtom*& stbl)
  43. {
  44.     // create the stbl container
  45.     stbl = new AP4_ContainerAtom(AP4_ATOM_TYPE_STBL);
  46.     // create the stsd atom
  47.     AP4_StsdAtom* stsd = new AP4_StsdAtom(this);
  48.     // create the stsz atom
  49.     AP4_StszAtom* stsz = new AP4_StszAtom();
  50.     // create the stsc atom
  51.     AP4_StscAtom* stsc = new AP4_StscAtom();
  52.     // start chunk table
  53.     AP4_Cardinal        samples_in_chunk = 0;
  54.     AP4_Offset          current_chunk_offset = 0;
  55.     AP4_Size            current_chunk_size = 0;
  56.     AP4_Array<AP4_UI32> chunk_offsets;
  57.     // process all the samples
  58.     AP4_Cardinal sample_count = GetSampleCount();
  59.     for (AP4_Ordinal i=0; i<sample_count; i++) {
  60.         AP4_Sample sample;
  61.         GetSample(i, sample);
  62.         
  63.         // add an entry into the stsz atom
  64.         stsz->AddEntry(sample.GetSize());
  65.         
  66.         // adjust the current chunk info
  67.         current_chunk_size += sample.GetSize();
  68.         // count the sample
  69.         samples_in_chunk++;
  70.         if (samples_in_chunk == 10) {
  71.             // new chunk
  72.             chunk_offsets.Append(current_chunk_offset);
  73.             stsc->AddEntry(1, 10, 1);
  74.             samples_in_chunk = 0;
  75.             // adjust the chunk offset
  76.             current_chunk_offset += current_chunk_size;
  77.             current_chunk_size = 0;
  78.         }
  79.     }
  80.     // process any unfinished chunk
  81.     if (samples_in_chunk != 0) {
  82.         // new chunk
  83.         chunk_offsets.Append(current_chunk_offset);
  84.         stsc->AddEntry(1, samples_in_chunk, 1);
  85.     }
  86.     // create the stco atom
  87.     AP4_StcoAtom* stco = new AP4_StcoAtom(&chunk_offsets[0], 
  88.                                           chunk_offsets.ItemCount());
  89.     // create the stts atom (for now, we assume sample of equal duration)
  90.     AP4_SttsAtom* stts = new AP4_SttsAtom();
  91.     stts->AddEntry(sample_count, 1000); // FIXME
  92.     // attach the children of stbl
  93.     stbl->AddChild(stsd);
  94.     stbl->AddChild(stsz);
  95.     stbl->AddChild(stsc);
  96.     stbl->AddChild(stco);
  97.     stbl->AddChild(stts);
  98.     return AP4_SUCCESS;
  99. }