diff options
| author | msheby <msheby@cinecert.com> | 2008-02-01 00:44:23 +0000 |
|---|---|---|
| committer | msheby <> | 2008-02-01 00:44:23 +0000 |
| commit | 6159b54a6ea46408a71c74b7c0a999c9ff5449e5 (patch) | |
| tree | 2ff5d60650a85ea979e2ce4acfa6e29febacd518 /src/AS_DCP_PCM.cpp | |
| parent | 3e1ee0a500bd0b513db4bdf18a9cb052f42404d4 (diff) | |
Forgot a fix.
Diffstat (limited to 'src/AS_DCP_PCM.cpp')
| -rwxr-xr-x | src/AS_DCP_PCM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AS_DCP_PCM.cpp b/src/AS_DCP_PCM.cpp index faf42f1..e32445b 100755 --- a/src/AS_DCP_PCM.cpp +++ b/src/AS_DCP_PCM.cpp @@ -68,7 +68,7 @@ MD_to_PCM_ADesc(MXF::WaveAudioDescriptor* ADescObj, PCM::AudioDescriptor& ADesc) ADesc.AvgBps = ADescObj->AvgBps; ADesc.LinkedTrackID = ADescObj->LinkedTrackID; assert(ADescObj->ContainerDuration <= 0xFFFFFFFFL); - ADesc.ContainerDuration = ADescObj->ContainerDuration; + ADesc.ContainerDuration = (ui32_t) ADescObj->ContainerDuration; return RESULT_OK; } |
