#include "box.h" #include #include struct stts_record { uint32_t SampleCount; uint32_t SampleDelta; };//stsc_record class Box_stts { public: Box_stts( ); ~Box_stts(); Box * GetBox(); void SetReserved( ); void AddEntry( uint32_t SampleCount, uint32_t SampleDelta, uint32_t Offset = 0 ); void WriteContent( ); private: Box * Container; std::vector Entries; };//Box_ftyp Class