Commit 5a495257 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DirectDraw: remove wall-paper playlist hack

parent f94e05c6
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_vout_display.h> #include <vlc_vout_display.h>
#include <vlc_playlist.h> /* needed for wallpaper */
#include <vlc_charset.h> /* FromT */ #include <vlc_charset.h> /* FromT */
#include <windows.h> #include <windows.h>
...@@ -1400,15 +1399,6 @@ static int WallpaperCallback(vlc_object_t *object, char const *cmd, ...@@ -1400,15 +1399,6 @@ static int WallpaperCallback(vlc_object_t *object, char const *cmd,
sys->ch_wallpaper |= ch_wallpaper; sys->ch_wallpaper |= ch_wallpaper;
sys->wallpaper_requested = newval.b_bool; sys->wallpaper_requested = newval.b_bool;
vlc_mutex_unlock(&sys->lock); vlc_mutex_unlock(&sys->lock);
/* FIXME we should have a way to export variable to be saved */
if (ch_wallpaper) {
playlist_t *p_playlist = pl_Get(vd);
/* Modify playlist as well because the vout might have to be
* restarted */
var_Create(p_playlist, "video-wallpaper", VLC_VAR_BOOL);
var_SetBool(p_playlist, "video-wallpaper", newval.b_bool);
}
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment