diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-04 22:34:52 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-04 22:34:52 +0100 |
| commit | 08eb6cc9958c200ae90d376cb521bde930144c09 (patch) | |
| tree | f8b7e23a4bff8aedeb5c458ccfe665d403d31b48 | |
| parent | 54010eb460cb1038ded4177154fa63947f766a05 (diff) | |
Add a couple more Dolby certificate location / filename pairs.
| -rw-r--r-- | src/wx/dolby_doremi_certificate_panel.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wx/dolby_doremi_certificate_panel.cc b/src/wx/dolby_doremi_certificate_panel.cc index d290535c2..4d8845402 100644 --- a/src/wx/dolby_doremi_certificate_panel.cc +++ b/src/wx/dolby_doremi_certificate_panel.cc @@ -117,11 +117,21 @@ static void try_ims(vector<Location>& locations, string prefix, string serial) { locations.push_back({ + String::compose("%1%2xxx/Dolby-IMS1000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial), + String::compose("Dolby-IMS1000-%1.cert.sha256.pem", serial) + }); + + locations.push_back({ String::compose("%1%2xxx/Dolby-IMS2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial), String::compose("Dolby-IMS2000-%1.cert.sha256.pem", serial) }); locations.push_back({ + String::compose("%1%2xxx/cert_Dolby-IMS3000-%3-SMPTE.zip", prefix, serial.substr(0, 3), serial), + String::compose("cert_Dolby-IMS3000-%1-SMPTE.pem", serial) + }); + + locations.push_back({ String::compose("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial), String::compose("ims-%1.cert.sha256.pem", serial) }); |
