1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include "mp4common.h"
- MP4UrnAtom::MP4UrnAtom()
- : MP4Atom("urn ")
- {
- AddVersionAndFlags();
- AddProperty(new MP4StringProperty("name"));
- AddProperty(new MP4StringProperty("location"));
- }
- void MP4UrnAtom::Read()
- {
-
- ReadProperties(0, 3);
-
- if (m_pFile->GetPosition() < GetEnd()) {
-
- ReadProperties(3);
- }
- Skip();
- }
|