From: Carl Hetherington Date: Mon, 4 Mar 2024 21:34:52 +0000 (+0100) Subject: Add a couple more Dolby certificate location / filename pairs. X-Git-Tag: v2.17.13~12^2~4 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=08eb6cc9958c200ae90d376cb521bde930144c09 Add a couple more Dolby certificate location / filename pairs. --- 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 @@ -116,11 +116,21 @@ try_imb(vector& locations, string prefix, string serial) static void try_ims(vector& 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)