123456789101112131415161718192021222324252627282930313233343536373839 |
- #include "mp4common.h"
- MP4TrexAtom::MP4TrexAtom()
- : MP4Atom("trex")
- {
- AddVersionAndFlags();
- AddProperty(
- new MP4Integer32Property("trackId"));
- AddProperty(
- new MP4Integer32Property("defaultSampleDesriptionIndex"));
- AddProperty(
- new MP4Integer32Property("defaultSampleDuration"));
- AddProperty(
- new MP4Integer32Property("defaultSampleSize"));
- AddProperty(
- new MP4Integer32Property("defaultSampleFlags"));
- }
|