<!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}</style></head><body><div><br></div><div><br></div><div>On Sun, Oct 13, 2019, at 16:22, Gabriel Luci wrote:<br></div><blockquote type="cite" id="qt"><div dir="ltr">I assume you mean because the output plugin doesn't necessarily have a window? So isn't this the same as all the "Window properties" settings, which are defined in the same place? Or would you prefer to see this under that "Window properties" section too?<br></div></blockquote><div><br></div><div>This option is a string for windows, but it could be an integer on other OSes<br></div><div>Rémi would prefer to have this option in win32/window.c<br></div><div><br></div><div>vlc_module_begin()<br></div><div>    set_shortname(N_("Win32 window"))<br></div><div>    set_description(N_("Win32 window"))<br></div><div>    set_category(CAT_VIDEO)<br></div><div>    set_subcategory(SUBCAT_VIDEO_VOUT)<br></div><div>    set_capability("vout window", 10)<br></div><div>    set_callback(Open)<br></div><div>vlc_module_end()<br></div><div><br></div><div>But I'm not sure about it, on Linux, this id would be something like "0:0", so a string too.<br></div><div>Personally, I prefer to have a global settings for all OSses (and maybe do some integer conversion on some implementations).<br></div><div><br></div><blockquote type="cite" id="qt"><div><br></div><div class="qt-gmail_quote"><div class="qt-gmail_attr" dir="ltr">On Sun, Oct 13, 2019 at 3:18 AM Rémi Denis-Courmont <<a href="mailto:remi@remlab.net">remi@remlab.net</a>> wrote:<br></div><blockquote style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(204, 204, 204);border-left-style:solid;border-left-width:1px;padding-left:1ex;" class="qt-gmail_quote"><div>Le sunnuntaina 13. lokakuuta 2019, 6.58.28 EEST Gabriel Luci a écrit :<br></div><div>> This will contain the name of the display device to always show<br></div><div>> fullscreen video on.<br></div><div>> ---<br></div><div>>  src/libvlc-module.c | 6 ++++++<br></div><div>>  1 file changed, 6 insertions(+)<br></div><div>> <br></div><div>> diff --git a/src/libvlc-module.c b/src/libvlc-module.c<br></div><div>> index d3da4e5fb8..163e4deda0 100644<br></div><div>> --- a/src/libvlc-module.c<br></div><div>> +++ b/src/libvlc-module.c<br></div><div>> @@ -314,6 +314,11 @@ static const char *const ppsz_align_descriptions[] =<br></div><div>>  #define FULLSCREEN_LONGTEXT N_( \<br></div><div>>      "Start video in fullscreen mode" )<br></div><div>> <br></div><div>> +#define FULLSCREEN_MONITOR_TEXT N_("Display device for fullscreen video")<br></div><div>> +#define FULLSCREEN_MONITOR_LONGTEXT N_( \<br></div><div>> +    "In a multiple monitor configuration, you can specify the device name "<br></div><div>> \ +    "of the display that you want the fullscreen video window to open<br></div><div>> on." ) +<br></div><div>>  #define VIDEO_ON_TOP_TEXT N_("Always on top")<br></div><div>>  #define VIDEO_ON_TOP_LONGTEXT N_( \<br></div><div>>      "Always place the video window on top of other windows." )<br></div><div>> @@ -1641,6 +1646,7 @@ vlc_module_begin ()<br></div><div>>      add_bool( "fullscreen", false, FULLSCREEN_TEXT, FULLSCREEN_LONGTEXT,<br></div><div>> false ) change_short('f')<br></div><div>>          change_safe ()<br></div><div>> +    add_string( "fullscreen-monitor", "", FULLSCREEN_MONITOR_TEXT,<br></div><div>> FULLSCREEN_MONITOR_LONGTEXT, false ) add_bool( "embedded-video", 1,<br></div><div>> EMBEDDED_TEXT, EMBEDDED_LONGTEXT, true )<br></div><div>>      add_bool( "xlib", true, "", "", true )<br></div><div><br></div><div>The values depend on the output plugin, so thus does not belong as a global <br></div><div>setting, just like the audio output device.<br></div><div><br></div><div>-- <br></div><div>レミ・デニ-クールモン<br></div><div><a rel="noreferrer" href="http://www.remlab.net/">http://www.remlab.net/</a><br></div><div><br></div><div><br></div><div><br></div><div>_______________________________________________<br></div><div>vlc-devel mailing list<br></div><div>To unsubscribe or modify your subscription options:<br></div><div><a rel="noreferrer" href="https://mailman.videolan.org/listinfo/vlc-devel">https://mailman.videolan.org/listinfo/vlc-devel</a><br></div></blockquote></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>