From ed98f256e807cba492436c78a18fa101fc3194c0 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 6 Jan 2026 02:14:45 -0600 Subject: [PATCH] Fix typo --- app/streaming/video/ffmpeg-renderers/drm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/video/ffmpeg-renderers/drm.cpp b/app/streaming/video/ffmpeg-renderers/drm.cpp index d19c43e8..f9bf6c36 100644 --- a/app/streaming/video/ffmpeg-renderers/drm.cpp +++ b/app/streaming/video/ffmpeg-renderers/drm.cpp @@ -811,7 +811,7 @@ bool DrmRenderer::initialize(PDECODER_PARAMETERS params) // underlays where the YUV-compatible overlay plane resides // underneath the primary plane. In this case, we will use // the primary plane as an overlay plane on top of the video. - if (auto type = props.property("type")) + if (auto type = props.property("type")) { if (type->initialValue() != DRM_PLANE_TYPE_OVERLAY && type->initialValue() != DRM_PLANE_TYPE_PRIMARY) { drmModeFreePlane(plane); continue;