summaryrefslogtreecommitdiff
path: root/src/h__02_Writer.cpp
diff options
context:
space:
mode:
authormilla <marc.illa@dolby.com>2021-06-03 14:23:52 +0200
committermilla <marc.illa@dolby.com>2021-06-03 14:23:52 +0200
commitbc8f5448441a85605f052294d40cf947473e83f5 (patch)
tree72b6588d5ed35b9cbb6ebc9e6646dd7583c76eab /src/h__02_Writer.cpp
parentf9d7fbc33aa571c547d916b145712469efd9f4b8 (diff)
Templatize h__AS02WriteClip, move functions to header. Note that this depends on filereader pluggable at runtime commit as the reader is called as a pointer here.
Diffstat (limited to 'src/h__02_Writer.cpp')
-rw-r--r--src/h__02_Writer.cpp86
1 files changed, 0 insertions, 86 deletions
diff --git a/src/h__02_Writer.cpp b/src/h__02_Writer.cpp
index e35727e..8043ebd 100644
--- a/src/h__02_Writer.cpp
+++ b/src/h__02_Writer.cpp
@@ -309,89 +309,3 @@ AS_02::MXF::AS02IndexWriterCBR::SetEditRate(const ASDCP::Rational& edit_rate, co
//------------------------------------------------------------------------------------------
//
-
-//
-AS_02::h__AS02WriterClip::h__AS02WriterClip(const ASDCP::Dictionary* d) :
- h__AS02Writer<AS_02::MXF::AS02IndexWriterCBR>(d),
- m_ECStart(0), m_ClipStart(0), m_IndexStrategy(AS_02::IS_FOLLOW) {}
-
-AS_02::h__AS02WriterClip::~h__AS02WriterClip() {}
-
-//
-bool
-AS_02::h__AS02WriterClip::HasOpenClip() const
-{
- return m_ClipStart != 0;
-}
-
-//
-Result_t
-AS_02::h__AS02WriterClip::StartClip(const byte_t* EssenceUL, AESEncContext* Ctx, HMACContext*)
-{
- if ( Ctx != 0 )
- {
- DefaultLogSink().Error("Encryption not yet supported for PCM clip-wrap.\n");
- return RESULT_STATE;
- }
-
- if ( m_ClipStart != 0 )
- {
- DefaultLogSink().Error("Cannot open clip, clip already open.\n");
- return RESULT_STATE;
- }
-
- m_ClipStart = m_File.Tell();
- byte_t clip_buffer[24] = {0};
- memcpy(clip_buffer, EssenceUL, 16);
- bool check = Kumu::write_BER(clip_buffer+16, 0, 8);
- assert(check);
- return m_File.Write(clip_buffer, 24);
-}
-
-//
-Result_t
-AS_02::h__AS02WriterClip::WriteClipBlock(const ASDCP::FrameBuffer& FrameBuf)
-{
- if ( m_ClipStart == 0 )
- {
- DefaultLogSink().Error("Cannot write clip block, no clip open.\n");
- return RESULT_STATE;
- }
-
- return m_File.Write(FrameBuf.RoData(), FrameBuf.Size());
-}
-
-//
-Result_t
-AS_02::h__AS02WriterClip::FinalizeClip(ui32_t bytes_per_frame)
-{
- if ( m_ClipStart == 0 )
- {
- DefaultLogSink().Error("Cannot close clip, clip not open.\n");
- return RESULT_STATE;
- }
-
- ui64_t current_position = m_File.Tell();
- Result_t result = m_File.Seek(m_ClipStart+16);
-
- if ( KM_SUCCESS(result) )
- {
- byte_t clip_buffer[8] = {0};
- ui64_t size = static_cast<ui64_t>(m_FramesWritten) * bytes_per_frame;
- bool check = Kumu::write_BER(clip_buffer, size, 8);
- assert(check);
- result = m_File.Write(clip_buffer, 8);
- }
-
- if ( KM_SUCCESS(result) )
- {
- result = m_File.Seek(current_position);
- m_ClipStart = 0;
- }
-
- return result;
-}
-
-//
-// end h__02_Writer.cpp
-//