summaryrefslogtreecommitdiff
path: root/src/MXF.cpp
diff options
context:
space:
mode:
authormikey <mikey@cinecert.com>2012-03-06 20:08:59 +0000
committermikey <>2012-03-06 20:08:59 +0000
commit9f267e9656c2a5f2986b7ab29aeeec48143c76e1 (patch)
tree3985c66b9e151e03b7dd397369167a9e6694334e /src/MXF.cpp
parentfe9f995b429d66256725d8979d09ae93f8c53986 (diff)
version revv
Diffstat (limited to 'src/MXF.cpp')
-rwxr-xr-xsrc/MXF.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/MXF.cpp b/src/MXF.cpp
index 529344f..bc7bec2 100755
--- a/src/MXF.cpp
+++ b/src/MXF.cpp
@@ -902,6 +902,9 @@ ASDCP::MXF::OPAtomHeader::GetSourcePackage()
return 0;
}
+//
+ASDCP::MXF::RIP&
+ASDCP::MXF::OPAtomHeader::GetRIP() { return m_RIP; }
//
ASDCP::Result_t
@@ -1182,6 +1185,31 @@ ASDCP::MXF::OPAtomIndexFooter::Dump(FILE* stream)
(*i)->Dump(stream);
}
+ASDCP::Result_t
+ASDCP::MXF::OPAtomIndexFooter::GetMDObjectByID(const UUID& ObjectID, InterchangeObject** Object)
+{
+ return m_PacketList->GetMDObjectByID(ObjectID, Object);
+}
+
+//
+ASDCP::Result_t
+ASDCP::MXF::OPAtomIndexFooter::GetMDObjectByType(const byte_t* ObjectID, InterchangeObject** Object)
+{
+ InterchangeObject* TmpObject;
+
+ if ( Object == 0 )
+ Object = &TmpObject;
+
+ return m_PacketList->GetMDObjectByType(ObjectID, Object);
+}
+
+//
+ASDCP::Result_t
+ASDCP::MXF::OPAtomIndexFooter::GetMDObjectsByType(const byte_t* ObjectID, std::list<InterchangeObject*>& ObjectList)
+{
+ return m_PacketList->GetMDObjectsByType(ObjectID, ObjectList);
+}
+
//
ASDCP::Result_t
ASDCP::MXF::OPAtomIndexFooter::Lookup(ui32_t frame_num, IndexTableSegment::IndexEntry& Entry) const