From deadc1bf01e8bc68905c7d33578ffb77b8317c8f Mon Sep 17 00:00:00 2001 From: msheby Date: Thu, 25 Oct 2007 18:44:45 +0000 Subject: Win32 portability fixes --- src/AS_DCP_internal.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/AS_DCP_internal.h') diff --git a/src/AS_DCP_internal.h b/src/AS_DCP_internal.h index 7f1ef25..143bccf 100755 --- a/src/AS_DCP_internal.h +++ b/src/AS_DCP_internal.h @@ -90,6 +90,23 @@ namespace ASDCP Result_t EncryptFrameBuffer(const ASDCP::FrameBuffer&, ASDCP::FrameBuffer&, AESEncContext*); Result_t DecryptFrameBuffer(const ASDCP::FrameBuffer&, ASDCP::FrameBuffer&, AESDecContext*); + // + class KLReader : public ASDCP::KLVPacket + { + ASDCP_NO_COPY_CONSTRUCT(KLReader); + byte_t m_KeyBuf[SMPTE_UL_LENGTH*2]; + + public: + KLReader() {} + ~KLReader() {} + + inline const byte_t* Key() { return m_KeyBuf; } + inline const ui64_t Length() { return m_ValueLength; } + inline const ui64_t KLLength() { return m_KLLength; } + + Result_t ReadKLFromFile(Kumu::FileReader& Reader); + }; + // class h__Reader { -- cgit v1.2.3