<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?</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">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 class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Le sunnuntaina 13. lokakuuta 2019, 6.58.28 EEST Gabriel Luci a écrit :<br>
> This will contain the name of the display device to always show<br>
> fullscreen video on.<br>
> ---<br>
>  src/libvlc-module.c | 6 ++++++<br>
>  1 file changed, 6 insertions(+)<br>
> <br>
> diff --git a/src/libvlc-module.c b/src/libvlc-module.c<br>
> index d3da4e5fb8..163e4deda0 100644<br>
> --- a/src/libvlc-module.c<br>
> +++ b/src/libvlc-module.c<br>
> @@ -314,6 +314,11 @@ static const char *const ppsz_align_descriptions[] =<br>
>  #define FULLSCREEN_LONGTEXT N_( \<br>
>      "Start video in fullscreen mode" )<br>
> <br>
> +#define FULLSCREEN_MONITOR_TEXT N_("Display device for fullscreen video")<br>
> +#define FULLSCREEN_MONITOR_LONGTEXT N_( \<br>
> +    "In a multiple monitor configuration, you can specify the device name "<br>
> \ +    "of the display that you want the fullscreen video window to open<br>
> on." ) +<br>
>  #define VIDEO_ON_TOP_TEXT N_("Always on top")<br>
>  #define VIDEO_ON_TOP_LONGTEXT N_( \<br>
>      "Always place the video window on top of other windows." )<br>
> @@ -1641,6 +1646,7 @@ vlc_module_begin ()<br>
>      add_bool( "fullscreen", false, FULLSCREEN_TEXT, FULLSCREEN_LONGTEXT,<br>
> false ) change_short('f')<br>
>          change_safe ()<br>
> +    add_string( "fullscreen-monitor", "", FULLSCREEN_MONITOR_TEXT,<br>
> FULLSCREEN_MONITOR_LONGTEXT, false ) add_bool( "embedded-video", 1,<br>
> EMBEDDED_TEXT, EMBEDDED_LONGTEXT, true )<br>
>      add_bool( "xlib", true, "", "", true )<br>
<br>
The values depend on the output plugin, so thus does not belong as a global <br>
setting, just like the audio output device.<br>
<br>
-- <br>
レミ・デニ-クールモン<br>
<a href="http://www.remlab.net/" rel="noreferrer" target="_blank">http://www.remlab.net/</a><br>
<br>
<br>
<br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="https://mailman.videolan.org/listinfo/vlc-devel" rel="noreferrer" target="_blank">https://mailman.videolan.org/listinfo/vlc-devel</a></blockquote></div>