summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/AS_02_JXS.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/AS_02_JXS.cpp b/src/AS_02_JXS.cpp
index f8af21f..ded65ee 100644
--- a/src/AS_02_JXS.cpp
+++ b/src/AS_02_JXS.cpp
@@ -393,14 +393,16 @@ AS_02::JXS::MXFWriter::h__Writer::SetSourceStream(const std::string& label, cons
if ( KM_SUCCESS(result) )
{
- UL wrapping_label = UL(m_Dict->ul(MDD_MXFGCP1FrameWrappedPictureElement));
+ UL wrapping_label = UL(m_Dict->ul(MDD_MXFGCFrameWrappedProgressiveJPEGXSPictures
+ /*MDD_MXFGCP1FrameWrappedPictureElement*/));
CDCIEssenceDescriptor *cdci_descriptor = dynamic_cast<CDCIEssenceDescriptor*>(m_EssenceDescriptor);
if ( cdci_descriptor )
{
if ( cdci_descriptor->FrameLayout ) // 0 == progressive, 1 == interlace
{
- wrapping_label = UL(m_Dict->ul(MDD_MXFGCI1FrameWrappedPictureElement));
+ wrapping_label = UL(m_Dict->ul(MDD_MXFGCFrameWrappedInterlacedJPEGXSPictures
+ /*MDD_MXFGCI1FrameWrappedPictureElement*/));
}
}