diff options
| author | John Hurst <jhurst@cinecert.com> | 2021-08-26 20:49:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-26 20:49:41 -0700 |
| commit | 3e71fd643d02342ffd7b5fd3b561233b3bb31acc (patch) | |
| tree | 5eb2aa3b254edf3f0c448cd890aadb827ee32fae /src/AS_02_TimedText.cpp | |
| parent | 623b3ae0a41e6c27f331e2a3347ec07cf1337b05 (diff) | |
| parent | 301b00b133eccd88e86a4536266ec258bb3b82de (diff) | |
Merge pull request #15 from DolbyLaboratories/dolby/atmos_storage/asdcplib_integration/templatize_h02writerclip_depends_on_pluggable_filereader
Templatize h__AS02WriteClip, move functions definition 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/AS_02_TimedText.cpp')
| -rw-r--r-- | src/AS_02_TimedText.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AS_02_TimedText.cpp b/src/AS_02_TimedText.cpp index aa593a1..5b67c32 100644 --- a/src/AS_02_TimedText.cpp +++ b/src/AS_02_TimedText.cpp @@ -386,7 +386,7 @@ AS_02::TimedText::MXFReader::Close() const // -class AS_02::TimedText::MXFWriter::h__Writer : public AS_02::h__AS02WriterClip +class AS_02::TimedText::MXFWriter::h__Writer : public AS_02::h__AS02WriterClip<AS_02::MXF::AS02IndexWriterCBR> { ASDCP_NO_COPY_CONSTRUCT(h__Writer); h__Writer(); @@ -397,7 +397,7 @@ public: ui32_t m_EssenceStreamID; ASDCP::Rational m_EditRate; - h__Writer(const Dictionary *d) : AS_02::h__AS02WriterClip(d), m_EssenceStreamID(10) + h__Writer(const Dictionary *d) : AS_02::h__AS02WriterClip<AS_02::MXF::AS02IndexWriterCBR>(d), m_EssenceStreamID(10) { memset(m_EssenceUL, 0, SMPTE_UL_LENGTH); } |
