diff options
| author | Wolfgang Ruppel <imftool@t-online.de> | 2019-10-23 20:40:18 +0200 |
|---|---|---|
| committer | Wolfgang Ruppel <imftool@t-online.de> | 2019-10-23 20:40:18 +0200 |
| commit | fbdfd30bb77d37b354b19cf6cf3be72eec3bf725 (patch) | |
| tree | e070797695333001100b99d9d31d24709eb4efcd /src | |
| parent | b36c5af3e7af9c2ce2ea8828f6eed51385413d21 (diff) | |
Default value of Flags in Index Entry Array fixed
Diffstat (limited to 'src')
| -rwxr-xr-x | src/MXF.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -385,7 +385,7 @@ namespace ASDCP // std::list<ui32_t> SliceOffset; // Array<Rational> PosTable; - IndexEntry() : TemporalOffset(0), KeyFrameOffset(0), Flags(0), StreamOffset(0) {} + IndexEntry() : TemporalOffset(0), KeyFrameOffset(0), Flags(0x80), StreamOffset(0) {} IndexEntry(i8_t t_ofst, i8_t k_ofst, ui8_t flags, ui64_t s_ofst) : TemporalOffset(t_ofst), KeyFrameOffset(k_ofst), Flags(flags), StreamOffset(s_ofst) {} inline bool HasValue() const { return true; } |
