diff options
| author | John Hurst <jhurst@cinecert.com> | 2021-05-11 14:14:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-11 14:14:01 -0700 |
| commit | b71135239b4710bcdccd88adde161acf954706cb (patch) | |
| tree | 4cfa2c5123fac71f75178247c80911856e3087be /src/AS_DCP_PCM.cpp | |
| parent | 8c51d30f81cc4a123ec75be93e67cedb48982e40 (diff) | |
| parent | 794d14855362ca5e3d5a99ed9bf86bd506a172c1 (diff) | |
Merge pull request #32 from cth103/warning-fixes
Warning fixes
Diffstat (limited to 'src/AS_DCP_PCM.cpp')
| -rwxr-xr-x | src/AS_DCP_PCM.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/AS_DCP_PCM.cpp b/src/AS_DCP_PCM.cpp index 6241d15..d56f727 100755 --- a/src/AS_DCP_PCM.cpp +++ b/src/AS_DCP_PCM.cpp @@ -80,6 +80,10 @@ ASDCP::PCM_ADesc_to_MD(PCM::AudioDescriptor& ADesc, MXF::WaveAudioDescriptor* AD case PCM::CF_CFG_6: ADescObj->ChannelAssignment = DefaultSMPTEDict().Type(MDD_DCAudioChannelCfg_MCA).ul; break; + + case PCM::CF_NONE: + case PCM::CF_MAXIMUM: + break; } return RESULT_OK; |
