diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-05 22:05:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-06 21:18:23 +0200 |
| commit | 08c2f6d80873f41c063c71588e781c9e6c3179e9 (patch) | |
| tree | 52652f484ce4e69fd2bfdb4c648b2d127e7008f8 /src/wx | |
| parent | 577602f032c0a129612efc8015f846f4bf6e64c9 (diff) | |
Write MainSoundConfiguration tags with hyphens for unused channels (#2501).
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index e29789950..d88a030bb 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -395,6 +395,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::INVALID_SUBTITLE_ISSUE_DATE: add(i, _("<IssueDate> has an invalid value %n")); break; + case dcp::VerificationNote::Code::MISMATCHED_SOUND_CHANNEL_COUNTS: + add(i, _("Sound assets do not all have the same channel count.")); + break; + case dcp::VerificationNote::Code::INVALID_MAIN_SOUND_CONFIGURATION: + add(i, _("<MainSoundConfiguration> describes incorrect number of channels (%n)")); + break; } } |
