diff options
| author | jhurst <jhurst@cinecert.com> | 2019-02-21 16:17:11 -0800 |
|---|---|---|
| committer | jhurst <jhurst@cinecert.com> | 2019-02-21 16:17:11 -0800 |
| commit | 28235209272ef9c759a94d434b7a0ac9e5d0bf31 (patch) | |
| tree | 870b8fc6c6da9634f05559a0c5a5924c83cd06bd /src/Metadata.h | |
| parent | 58628942da20e483f5c3076d6c14ff4bef71fc71 (diff) | |
Made Duration, EventStartPosition, and EventComment properties optional, as per ST377
Diffstat (limited to 'src/Metadata.h')
| -rwxr-xr-x | src/Metadata.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Metadata.h b/src/Metadata.h index ebdb288..b2466ef 100755 --- a/src/Metadata.h +++ b/src/Metadata.h @@ -658,9 +658,9 @@ namespace ASDCP public: const Dictionary*& m_Dict; UL DataDefinition; - ui64_t EventStartPosition; - ui64_t Duration; - UTF16String EventComment; + optional_property<ui64_t > Duration; + optional_property<ui64_t > EventStartPosition; + optional_property<UTF16String > EventComment; UUID DMFramework; DMSegment(const Dictionary*& d); |
