diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-08-15 18:32:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-08-15 18:32:55 +0200 |
| commit | 8a4a2f25cac0c58aac1d4267facab20e5ec3b57f (patch) | |
| tree | d6ba515232092e8d63dff231ceb639222a355eba /src/AS_DCP_PCM.cpp | |
| parent | ae75eb417d3804a6d723e2cf09647b54b15df5db (diff) | |
Hackily fix use of undefined variable if !ASDCP_SUCCESS(result) here.
Diffstat (limited to 'src/AS_DCP_PCM.cpp')
| -rwxr-xr-x | src/AS_DCP_PCM.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/AS_DCP_PCM.cpp b/src/AS_DCP_PCM.cpp index 30eec91..4282730 100755 --- a/src/AS_DCP_PCM.cpp +++ b/src/AS_DCP_PCM.cpp @@ -263,6 +263,8 @@ ASDCP::PCM::MXFReader::h__Reader::OpenRead(const std::string& filename) { Result_t result = OpenMXFRead(filename); + m_ADesc.ContainerDuration = 0; + if( ASDCP_SUCCESS(result) ) { InterchangeObject* Object = 0 |
