summaryrefslogtreecommitdiff
path: root/src/Metadata.h
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2020-04-09 12:28:12 -0700
committerjhurst <jhurst@cinecert.com>2020-04-09 12:28:12 -0700
commitdd323ce3297bb74dae1cd044206b8733b4757efa (patch)
tree5c33425196254bb9ac54e2f2bb5684e443194378 /src/Metadata.h
parent5e63427d5b08481e85fc4703a9e88c3072b9a1ce (diff)
Added IAB in IMF ULs and Sets
Diffstat (limited to 'src/Metadata.h')
-rwxr-xr-xsrc/Metadata.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/Metadata.h b/src/Metadata.h
index c624784..78c3445 100755
--- a/src/Metadata.h
+++ b/src/Metadata.h
@@ -1297,6 +1297,50 @@ namespace ASDCP
virtual Result_t WriteToBuffer(ASDCP::FrameBuffer&);
};
+ //
+ class IABEssenceDescriptor : public FileDescriptor
+ {
+ IABEssenceDescriptor();
+
+ public:
+ const Dictionary*& m_Dict;
+
+ IABEssenceDescriptor(const Dictionary*& d);
+ IABEssenceDescriptor(const IABEssenceDescriptor& rhs);
+ virtual ~IABEssenceDescriptor() {}
+
+ const IABEssenceDescriptor& operator=(const IABEssenceDescriptor& rhs) { Copy(rhs); return *this; }
+ virtual void Copy(const IABEssenceDescriptor& rhs);
+ virtual const char* HasName() { return "IABEssenceDescriptor"; }
+ virtual Result_t InitFromTLVSet(TLVReader& TLVSet);
+ virtual Result_t WriteToTLVSet(TLVWriter& TLVSet);
+ virtual void Dump(FILE* = 0);
+ virtual Result_t InitFromBuffer(const byte_t* p, ui32_t l);
+ virtual Result_t WriteToBuffer(ASDCP::FrameBuffer&);
+ };
+
+ //
+ class IABSoundfieldLabelSubDescriptor : public MCALabelSubDescriptor
+ {
+ IABSoundfieldLabelSubDescriptor();
+
+ public:
+ const Dictionary*& m_Dict;
+
+ IABSoundfieldLabelSubDescriptor(const Dictionary*& d);
+ IABSoundfieldLabelSubDescriptor(const IABSoundfieldLabelSubDescriptor& rhs);
+ virtual ~IABSoundfieldLabelSubDescriptor() {}
+
+ const IABSoundfieldLabelSubDescriptor& operator=(const IABSoundfieldLabelSubDescriptor& rhs) { Copy(rhs); return *this; }
+ virtual void Copy(const IABSoundfieldLabelSubDescriptor& rhs);
+ virtual const char* HasName() { return "IABSoundfieldLabelSubDescriptor"; }
+ virtual Result_t InitFromTLVSet(TLVReader& TLVSet);
+ virtual Result_t WriteToTLVSet(TLVWriter& TLVSet);
+ virtual void Dump(FILE* = 0);
+ virtual Result_t InitFromBuffer(const byte_t* p, ui32_t l);
+ virtual Result_t WriteToBuffer(ASDCP::FrameBuffer&);
+ };
+
} // namespace MXF
} // namespace ASDCP