Update version annunciator to follow new variable.
[asdcplib.git] / src / S12MTimecode.h
index 23ccbb4a79ee8da6d3172cf7ef0bed5070224151..88c16f8bbce3a2a8b0e3fab2761e6b0507380a30 100644 (file)
@@ -58,7 +58,7 @@ public:
     DecodeString(tc);
   }
 
-  S12MTimecode(const S12MTimecode& rhs) : m_FrameCount(0), m_FPS(0)
+  S12MTimecode(const S12MTimecode& rhs) : IArchive(), m_FrameCount(0), m_FPS(0)
   {
     m_FPS = rhs.m_FPS;
     m_FrameCount = rhs.m_FrameCount;
@@ -130,6 +130,7 @@ public:
 
   // IArchive
   bool HasValue() const { return (m_FPS > 0); }
+  ui32_t ArchiveLength() const { return sizeof(ui32_t)*2; }
 
   bool Archive(Kumu::MemIOWriter* Writer) const
   {