summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWolfgang Ruppel <imftool@t-online.de>2019-10-23 20:40:18 +0200
committerWolfgang Ruppel <imftool@t-online.de>2019-10-23 20:40:18 +0200
commitfbdfd30bb77d37b354b19cf6cf3be72eec3bf725 (patch)
treee070797695333001100b99d9d31d24709eb4efcd /src
parentb36c5af3e7af9c2ce2ea8828f6eed51385413d21 (diff)
Default value of Flags in Index Entry Array fixed
Diffstat (limited to 'src')
-rwxr-xr-xsrc/MXF.h2
1 files changed, 1 insertions, 1 deletions
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<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; }