From fbdfd30bb77d37b354b19cf6cf3be72eec3bf725 Mon Sep 17 00:00:00 2001 From: Wolfgang Ruppel Date: Wed, 23 Oct 2019 20:40:18 +0200 Subject: Default value of Flags in Index Entry Array fixed --- src/MXF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/MXF.h b/src/MXF.h index b8d1193..d6e201a 100755 --- a/src/MXF.h +++ b/src/MXF.h @@ -385,7 +385,7 @@ namespace ASDCP // std::list SliceOffset; // Array 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; } -- cgit v1.2.3