mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
eglglessink: Reset display_region dims at caps renego
This commit is contained in:
parent
f28f5df29e
commit
884e5fa173
1 changed files with 8 additions and 0 deletions
|
@ -2229,6 +2229,7 @@ gst_eglglessink_getcaps (GstBaseSink * bsink)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* XXX: WIP renego logic */
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_eglglessink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
gst_eglglessink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
||||||
{
|
{
|
||||||
|
@ -2341,6 +2342,13 @@ gst_eglglessink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
||||||
|
|
||||||
eglglessink->eglglesctx->display = NULL;
|
eglglessink->eglglesctx->display = NULL;
|
||||||
|
|
||||||
|
/* Reset display region
|
||||||
|
* XXX: Should probably keep old ones if set_render_rect()
|
||||||
|
* has been called.
|
||||||
|
*/
|
||||||
|
eglglessink->display_region.w = 0;
|
||||||
|
eglglessink->display_region.h = 0;
|
||||||
|
|
||||||
if (!gst_eglglessink_init_egl_display (eglglessink)) {
|
if (!gst_eglglessink_init_egl_display (eglglessink)) {
|
||||||
GST_ERROR_OBJECT (eglglessink, "Could not reinit display connection");
|
GST_ERROR_OBJECT (eglglessink, "Could not reinit display connection");
|
||||||
goto HANDLE_ERROR;
|
goto HANDLE_ERROR;
|
||||||
|
|
Loading…
Reference in a new issue