summaryrefslogtreecommitdiff
path: root/src/AS_02_internal.h
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2020-02-14 11:46:52 -0800
committerjhurst <jhurst@cinecert.com>2020-02-14 11:46:52 -0800
commit610e14eb3cc8d3a7b9223646695e900b0acde132 (patch)
tree41f45c54e721285f9dcca4a8065453e208c38e04 /src/AS_02_internal.h
parent7f8e4c2f945e5c33ea707b232cc4eb5859b1d8f9 (diff)
Die timecode! Die!no_tc_in_as_02
Diffstat (limited to 'src/AS_02_internal.h')
-rw-r--r--src/AS_02_internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/AS_02_internal.h b/src/AS_02_internal.h
index 4be764d..e6038c3 100644
--- a/src/AS_02_internal.h
+++ b/src/AS_02_internal.h
@@ -164,8 +164,7 @@ namespace AS_02
// all the above for a single source clip
Result_t WriteAS02Header(const std::string& PackageLabel, const ASDCP::UL& WrappingUL,
const std::string& TrackName, const ASDCP::UL& EssenceUL,
- const ASDCP::UL& DataDefinition, const ASDCP::Rational& EditRate,
- const ui32_t& TCFrameRate)
+ const ASDCP::UL& DataDefinition, const ASDCP::Rational& EditRate)
{
if ( EditRate.Numerator == 0 || EditRate.Denominator == 0 )
{
@@ -175,7 +174,7 @@ namespace AS_02
InitHeader(MXFVersion_2011);
- AddSourceClip(EditRate, EditRate/*TODO: for a moment*/, TCFrameRate, TrackName, EssenceUL, DataDefinition, PackageLabel);
+ AddSourceClip(EditRate, EditRate/*TODO: for a moment*/, 0 /*no timecode track*/, TrackName, EssenceUL, DataDefinition, PackageLabel);
AddEssenceDescriptor(WrappingUL);
this->m_IndexWriter.SetPrimerLookup(&this->m_HeaderPart.m_Primer);