1234567891011121314151617181920212223242526272829303132333435 |
- #include "mp4common.h"
- MP4SchmAtom::MP4SchmAtom()
- : MP4Atom("schm")
- {
- AddVersionAndFlags();
- AddProperty(
- new MP4Integer32Property("scheme_type"));
- AddProperty(
- new MP4Integer32Property("scheme_version"));
-
- }
|