diff options
| author | Thomas Richter <thomas.richter@iis.fraunhofer.de> | 2022-01-28 11:37:24 +0100 |
|---|---|---|
| committer | Thomas Richter <thomas.richter@iis.fraunhofer.de> | 2022-01-28 11:37:24 +0100 |
| commit | e24efd26500b83aeede323b9e4ba1fc31b1b1197 (patch) | |
| tree | 2043bd89f3ac67267172dca11468f1795bebdcd8 /src/AS_02_JXS.cpp | |
| parent | 7081231eba80044c0f97d4da5998d65681b94528 (diff) | |
Fixed the MMDs for the JPEG XS AS02 labels.
Diffstat (limited to 'src/AS_02_JXS.cpp')
| -rw-r--r-- | src/AS_02_JXS.cpp | 6 |
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*/)); } } |
