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