1234567891011121314151617181920212223242526272829303132333435363738 |
- #include "mp4common.h"
- MP4StcoAtom::MP4StcoAtom()
- : MP4Atom("stco")
- {
- AddVersionAndFlags();
- MP4Integer32Property* pCount =
- new MP4Integer32Property("entryCount");
- AddProperty(pCount);
- MP4TableProperty* pTable = new MP4TableProperty("entries", pCount);
- AddProperty(pTable);
- pTable->AddProperty(
- new MP4Integer32Property("chunkOffset"));
- }
|