summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 7f78a2d07c..1063876640 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -345,6 +345,7 @@ struct vo *init_best_video_out(struct MPOpts *opts, struct vo_x11_state *x11,
.input_ctx = input_ctx,
.event_fd = -1,
.registered_fd = -1,
+ .window_title = talloc_strdup(vo, ""),
};
// first try the preferred drivers, with their optional subdevice param:
if (vo_list && vo_list[0])
@@ -526,11 +527,7 @@ void calc_src_dst_rects(struct vo *vo, int src_width, int src_height,
// you need to keep the string for an extended period of time.
const char *vo_get_window_title(struct vo *vo)
{
- if (vo->opts->vo_wintitle) {
- return vo->opts->vo_wintitle;
- } else {
- return "mplayer2";
- }
+ return vo->window_title;
}
/**