summaryrefslogtreecommitdiff
path: root/src/AS_02_PHDR.cpp
diff options
context:
space:
mode:
authorJohn Hurst <jhurst@cinecert.com>2021-05-11 14:14:01 -0700
committerGitHub <noreply@github.com>2021-05-11 14:14:01 -0700
commitb71135239b4710bcdccd88adde161acf954706cb (patch)
tree4cfa2c5123fac71f75178247c80911856e3087be /src/AS_02_PHDR.cpp
parent8c51d30f81cc4a123ec75be93e67cedb48982e40 (diff)
parent794d14855362ca5e3d5a99ed9bf86bd506a172c1 (diff)
Merge pull request #32 from cth103/warning-fixes
Warning fixes
Diffstat (limited to 'src/AS_02_PHDR.cpp')
-rw-r--r--src/AS_02_PHDR.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AS_02_PHDR.cpp b/src/AS_02_PHDR.cpp
index 471d226..6876e5b 100644
--- a/src/AS_02_PHDR.cpp
+++ b/src/AS_02_PHDR.cpp
@@ -355,7 +355,7 @@ public:
byte_t m_EssenceUL[SMPTE_UL_LENGTH];
byte_t m_MetadataUL[SMPTE_UL_LENGTH];
- h__Writer(const Dictionary& d) : h__AS02WriterFrame(d), m_EssenceSubDescriptor(0), m_MetadataTrackSubDescriptor(0) {
+ h__Writer(const Dictionary& d) : h__AS02WriterFrame(d), m_MetadataTrackSubDescriptor(0), m_EssenceSubDescriptor(0) {
memset(m_EssenceUL, 0, SMPTE_UL_LENGTH);
memset(m_MetadataUL, 0, SMPTE_UL_LENGTH);
}