From 69b19f2642c34b0ad81eeaaf182e2b5158dfb07c Mon Sep 17 00:00:00 2001
From: Lukasz Marek <lukasz.m.luki@gmail.com>
Date: Sun, 2 Feb 2014 01:21:53 +0100
Subject: [PATCH] lavd/opengl_enc: fix window caption

Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
---
 libavdevice/opengl_enc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavdevice/opengl_enc.c b/libavdevice/opengl_enc.c
index 7e5da48224f..d4516a3752a 100644
--- a/libavdevice/opengl_enc.c
+++ b/libavdevice/opengl_enc.c
@@ -407,6 +407,7 @@ static int av_cold opengl_sdl_create_window(AVFormatContext *h)
     av_log(opengl, AV_LOG_INFO, "SDL driver: '%s'.\n", SDL_VideoDriverName(buffer, sizeof(buffer)));
     message.width = opengl->surface->w;
     message.height = opengl->surface->h;
+    SDL_WM_SetCaption(opengl->window_title, NULL);
     opengl_control_message(h, AV_APP_TO_DEV_WINDOW_SIZE, &message, sizeof(AVDeviceRect));
     return 0;
 }
-- 
GitLab