diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:57:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-26 21:37:01 +0100 |
| commit | a6b76fb3c51921fed4554bfa15ce6c593cd86c07 (patch) | |
| tree | b8657d8466592209d794347d27191ddc5af2ee65 /src/AS_DCP_PCM.cpp | |
| parent | bf79fce3cc5cda56b0faf79953145e54a26631a1 (diff) | |
Fix warnings about not all possible values in a switch
being handled.
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 e7fbff3..5a3fd1e 100755 --- a/src/AS_DCP_PCM.cpp +++ b/src/AS_DCP_PCM.cpp @@ -81,6 +81,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; |
