12345678910111213141516171819202122232425262728293031 |
- #include "mp4common.h"
- MP4IodsAtom::MP4IodsAtom()
- : MP4Atom("iods")
- {
- AddVersionAndFlags();
- AddProperty(
- new MP4DescriptorProperty(NULL,
- MP4FileIODescrTag, MP4FileODescrTag, Required, OnlyOne));
- }
|