<!DOCTYPE html><html><head><title></title><style type="text/css">p.MsoNormal,p.MsoNoSpacing{margin:0}
p.MsoNormal,p.MsoNoSpacing{margin:0}
p.MsoNormal,p.MsoNoSpacing{margin:0}
p.MsoNormal,p.MsoNoSpacing{margin:0}</style></head><body><div><br></div><div>On Fri, Nov 8, 2019, at 14:48, Rémi Denis-Courmont wrote:<br></div><blockquote id="qt" type="cite"><div>This is completely wrong. This is meant to be the configured size. Nothing else and anything else *will* break one settings combination or other.<br></div></blockquote><div><br></div><div>Sorry for being completely wrong (PS: it's harsh), but I left the vout/window/display development for a while. I did my best to follow the modification from you and Steve but a lot of things have changed since 3.0. I have no idea how to fix #22674. Do you have an idea ?<br></div><div><br></div><blockquote id="qt" type="cite"><div><br></div><div class="qt-gmail_quote"><div>Le 8 novembre 2019 19:56:16 GMT+09:00, Thomas Guillem <thomas@gllm.fr> a écrit :<br></div><blockquote class="qt-gmail_quote" style="margin-top:0pt;margin-right:0pt;margin-bottom:0pt;margin-left:0.8ex;border-left-color:rgb(204, 204, 204);border-left-style:solid;border-left-width:1px;padding-left:1ex;"><pre class="qt-k9mail"><div>This will be needed by the next commit since the cfg->display size will be<br></div><div>modified by window plugin events.<br></div><div><br></div><div>Refs #22674<hr> src/video_output/video_output.c | 6 ++++--<br></div><div> 1 file changed, 4 insertions(+), 2 deletions(-)<br></div><div><br></div><div>diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c<br></div><div>index 3d2d78f6f23..db48538fd9c 100644<br></div><div>--- a/src/video_output/video_output.c<br></div><div>+++ b/src/video_output/video_output.c<br></div><div>@@ -643,8 +643,10 @@ static void VoutGetDisplayCfg(vout_thread_t *vout, const video_format_t *fmt, vo<br></div><div> <br></div><div>     const int display_width = var_GetInteger(vout, "width");<br></div><div>     const int display_height = var_GetInteger(vout, "height");<br></div><div>-    cfg->display.width   = display_width > 0  ? display_width  : 0;<br></div><div>-    cfg->display.height  = display_height > 0 ? display_height : 0;<br></div><div>+    if (display_width > 0)<br></div><div>+        cfg->display.width = display_width;<br></div><div>+    if (display_height > 0)<br></div><div>+        cfg->display.height = display_height;<br></div><div>     cfg->is_display_filled  = var_GetBool(vout, "autoscale");<br></div><div>     unsigned msar_num, msar_den;<br></div><div>     if (var_InheritURational(vout, &msar_num, &msar_den, "monitor-par") ||<br></div></pre></blockquote></div><div><br></div><div>-- <br></div><div>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté. <br></div><div>_______________________________________________<br></div><div>vlc-devel mailing list<br></div><div>To unsubscribe or modify your subscription options:<br></div><div>https://mailman.videolan.org/listinfo/vlc-devel<br></div></blockquote><div><br></div></body></html>