Improve robustness of DRM property value handling

This commit is contained in:
Cameron Gutman 2026-01-02 02:05:59 -06:00
commit 5f89636ed7
2 changed files with 19 additions and 12 deletions

View file

@ -53,14 +53,6 @@ extern "C" {
#define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V')
#endif
// Values for "Colorspace" connector property
#ifndef DRM_MODE_COLORIMETRY_DEFAULT
#define DRM_MODE_COLORIMETRY_DEFAULT 0
#endif
#ifndef DRM_MODE_COLORIMETRY_BT2020_RGB
#define DRM_MODE_COLORIMETRY_BT2020_RGB 9
#endif
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
@ -785,7 +777,8 @@ void DrmRenderer::setHdrMode(bool enabled)
}
if (auto prop = m_Connector.property("max bpc")) {
m_PropSetter.set(*prop, enabled ? 10 : 8);
auto range = prop->range();
m_PropSetter.set(*prop, std::clamp<uint64_t>(enabled ? 10 : 8, range.first, range.second));
}
if (auto prop = m_Connector.property("HDR_OUTPUT_METADATA")) {

View file

@ -96,8 +96,13 @@ class DrmRenderer : public IFFmpegRenderer {
return m_Values.find(name) != m_Values.end();
}
uint64_t value(const std::string &name) const {
return m_Values.find(name)->second;
std::optional<uint64_t> value(const std::string &name) const {
if (auto it = m_Values.find(name); it != m_Values.end()) {
return it->second;
}
else {
return std::nullopt;
}
}
uint32_t objectId() const {
@ -267,7 +272,16 @@ class DrmRenderer : public IFFmpegRenderer {
}
bool set(const DrmProperty& prop, const std::string &value) {
if (set(prop, prop.value(value), false)) {
std::optional<uint64_t> propValue = prop.value(value);
if (!propValue) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
"Property '%s' has no supported enum value '%s'",
prop.name(),
value.c_str());
return false;
}
if (set(prop, *propValue, false)) {
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
"Set property '%s': %s",
prop.name(),