diff options
| author | jhurst <jhurst@cinecert.com> | 2013-07-02 05:51:18 +0000 |
|---|---|---|
| committer | jhurst <> | 2013-07-02 05:51:18 +0000 |
| commit | 0cc43cc3765c003d60196ff45213c2835281a0c3 (patch) | |
| tree | 9e80d263f63dc09c5184943f8adb97ab562368bd /src/AS_DCP_MPEG2.cpp | |
| parent | f2ecb6822ff3db70b40adb19a37eab6456e28ed8 (diff) | |
more optional stuff
Diffstat (limited to 'src/AS_DCP_MPEG2.cpp')
| -rwxr-xr-x | src/AS_DCP_MPEG2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AS_DCP_MPEG2.cpp b/src/AS_DCP_MPEG2.cpp index b10c8b5..d7cc935 100755 --- a/src/AS_DCP_MPEG2.cpp +++ b/src/AS_DCP_MPEG2.cpp @@ -62,7 +62,7 @@ MD_to_MPEG2_VDesc(MXF::MPEG2VideoDescriptor* VDescObj, MPEG2::VideoDescriptor& V VDesc.ColorSiting = VDescObj->ColorSiting; VDesc.CodedContentType = VDescObj->CodedContentType; - VDesc.LowDelay = VDescObj->LowDelay == 0 ? false : true; + VDesc.LowDelay = VDescObj->LowDelay.get() == 0 ? false : true; VDesc.BitRate = VDescObj->BitRate; VDesc.ProfileAndLevel = VDescObj->ProfileAndLevel; return RESULT_OK; |
