diff --git a/modules/hw/nvdec/nvdec_gl.c b/modules/hw/nvdec/nvdec_gl.c
index a6ff6ccf6999fa7cb7fd173955453da6bfdb95ef..f6b808a477df208e21e1d177c2b31ec2e02be01d 100644
--- a/modules/hw/nvdec/nvdec_gl.c
+++ b/modules/hw/nvdec/nvdec_gl.c
@@ -147,14 +147,14 @@ error:
 static void Close(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
-    converter_sys_t *p_sys = tc->interop.priv;
+    converter_sys_t *p_sys = tc->interop->priv;
     vlc_decoder_device_Release(p_sys->device);
 }
 
 static int Open(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
     if (!is_nvdec_opaque(interop->fmt.i_chroma))
         return VLC_EGENERIC;
 
diff --git a/modules/video_output/opengl/converter.h b/modules/video_output/opengl/converter.h
index 7692f269c6b704aae079356d3abee928f355a382..417e7dfc58eb936f0cc50dcceba22986c5d03f06 100644
--- a/modules/video_output/opengl/converter.h
+++ b/modules/video_output/opengl/converter.h
@@ -87,7 +87,7 @@ struct opengl_tex_converter_t
     struct pl_shader *pl_sh;
     const struct pl_shader_res *pl_sh_res;
 
-    struct vlc_gl_interop interop;
+    struct vlc_gl_interop *interop;
 
     /**
      * Callback to fetch locations of uniform or attributes variables
diff --git a/modules/video_output/opengl/converter_android.c b/modules/video_output/opengl/converter_android.c
index 0bdca07c2ca7e50653ac9a6ff4379f598a6e047a..36e8f2b6da0e6d8d57cd7ad0570d3d7f8a95a53e 100644
--- a/modules/video_output/opengl/converter_android.c
+++ b/modules/video_output/opengl/converter_android.c
@@ -94,7 +94,7 @@ static void
 Close(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
-    struct priv *priv = tc->interop.priv;
+    struct priv *priv = tc->interop->priv;
 
     if (priv->stex_attached)
         SurfaceTexture_detachFromGLContext(priv->awh);
@@ -106,7 +106,7 @@ static int
 Open(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (interop->fmt.i_chroma != VLC_CODEC_ANDROID_OPAQUE
      || !interop->gl->surface->handle.anativewindow
diff --git a/modules/video_output/opengl/converter_cvpx.c b/modules/video_output/opengl/converter_cvpx.c
index c5978a23b23f994546593d03b392312a87db7f5a..68047d2eae8b6e37bd1f20a0195bdb65fc738a23 100644
--- a/modules/video_output/opengl/converter_cvpx.c
+++ b/modules/video_output/opengl/converter_cvpx.c
@@ -144,7 +144,7 @@ static void
 Close(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
     struct priv *priv = interop->priv;
 
 #if TARGET_OS_IPHONE
@@ -165,7 +165,7 @@ static int
 Open(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (interop->fmt.i_chroma != VLC_CODEC_CVPX_UYVY
      && interop->fmt.i_chroma != VLC_CODEC_CVPX_NV12
diff --git a/modules/video_output/opengl/converter_vaapi.c b/modules/video_output/opengl/converter_vaapi.c
index e33e882aee5357aefc5f7bad01a70112586edb68..c99a04239bfbdf4a74468be33c8303d8dd18a610 100644
--- a/modules/video_output/opengl/converter_vaapi.c
+++ b/modules/video_output/opengl/converter_vaapi.c
@@ -229,10 +229,10 @@ static void
 Close(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
-    struct priv *priv = tc->interop.priv;
+    struct priv *priv = tc->interop->priv;
 
     if (priv->last.pic != NULL)
-        vaegl_release_last_pic(&tc->interop, priv);
+        vaegl_release_last_pic(tc->interop, priv);
 
     free(priv);
 }
@@ -339,7 +339,7 @@ static int
 Open(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (interop->vctx == NULL)
         return VLC_EGENERIC;
diff --git a/modules/video_output/opengl/converter_vdpau.c b/modules/video_output/opengl/converter_vdpau.c
index bf5461ddd4f4d601bd6030434a8c5877e01da1ab..c813a2124373da9060624d47fc0fd339ddd086fb 100644
--- a/modules/video_output/opengl/converter_vdpau.c
+++ b/modules/video_output/opengl/converter_vdpau.c
@@ -107,7 +107,7 @@ Close(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
     _glVDPAUFiniNV(); assert(tc->vt->GetError() == GL_NO_ERROR);
-    converter_sys_t *sys = tc->interop.priv;
+    converter_sys_t *sys = tc->interop->priv;
     vlc_decoder_device *dec_device = sys->dec_device;
     vlc_decoder_device_Release(dec_device);
 }
@@ -116,7 +116,7 @@ static int
 Open(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (interop->vctx == NULL)
         return VLC_EGENERIC;
diff --git a/modules/video_output/opengl/fragment_shaders.c b/modules/video_output/opengl/fragment_shaders.c
index 9d73088509f8c3c61472305a09f386da34a268cd..d8a3d965fced2609e4af0a0d3c3fd73314857fb6 100644
--- a/modules/video_output/opengl/fragment_shaders.c
+++ b/modules/video_output/opengl/fragment_shaders.c
@@ -303,7 +303,7 @@ interop_rgb_base_init(struct vlc_gl_interop *interop, GLenum tex_target,
 static int
 tc_base_fetch_locations(opengl_tex_converter_t *tc, GLuint program)
 {
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (tc->yuv_color)
     {
@@ -350,7 +350,7 @@ tc_base_prepare_shader(const opengl_tex_converter_t *tc,
                        float alpha)
 {
     (void) tex_width; (void) tex_height;
-    const struct vlc_gl_interop *interop = &tc->interop;
+    const struct vlc_gl_interop *interop = tc->interop;
 
     if (tc->yuv_color)
         tc->vt->Uniform4fv(tc->uloc.Coefficients, 4, tc->yuv_coefficients);
@@ -567,7 +567,7 @@ GLuint
 opengl_fragment_shader_init_impl(opengl_tex_converter_t *tc, GLenum tex_target,
                                  vlc_fourcc_t chroma, video_color_space_t yuv_space)
 {
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     const char *swizzle_per_tex[PICTURE_PLANE_MAX] = { NULL, };
     const bool is_yuv = vlc_fourcc_IsYUV(chroma);
@@ -586,7 +586,7 @@ opengl_fragment_shader_init_impl(opengl_tex_converter_t *tc, GLenum tex_target,
         ret = tc_yuv_base_init(tc, chroma, desc, yuv_space, &yuv_swap_uv);
         if (ret != VLC_SUCCESS)
             return 0;
-        ret = opengl_init_swizzle(&tc->interop, swizzle_per_tex, chroma, desc);
+        ret = opengl_init_swizzle(tc->interop, swizzle_per_tex, chroma, desc);
         if (ret != VLC_SUCCESS)
             return 0;
     }
diff --git a/modules/video_output/opengl/interop.h b/modules/video_output/opengl/interop.h
index 069bc623ef371eded9aff50c047c1248843fb793..32bdf3cfd9f91895336f64b80de3a5f12f7fb47b 100644
--- a/modules/video_output/opengl/interop.h
+++ b/modules/video_output/opengl/interop.h
@@ -95,6 +95,7 @@ struct vlc_gl_interop_ops {
 };
 
 struct vlc_gl_interop {
+    vlc_object_t obj;
     vlc_gl_t *gl;
     const opengl_vtable_t *vt;
     GLenum tex_target;
diff --git a/modules/video_output/opengl/vout_helper.c b/modules/video_output/opengl/vout_helper.c
index ad082983e777a2d030959d3c7d1771846a9cc7c6..d74e8fefc7c9dfe1880672c0dfc698197c70d9a3 100644
--- a/modules/video_output/opengl/vout_helper.c
+++ b/modules/video_output/opengl/vout_helper.c
@@ -346,7 +346,7 @@ static GLuint BuildVertexShader(const opengl_tex_converter_t *tc,
     tc->vt->ShaderSource(shader, 1, (const char **) &code, NULL);
     if (tc->b_dump_shaders)
         msg_Dbg(tc->gl, "\n=== Vertex shader for fourcc: %4.4s ===\n%s\n",
-                (const char *)&tc->interop.fmt.i_chroma, code);
+                (const char *)&tc->interop->fmt.i_chroma, code);
     tc->vt->CompileShader(shader);
     free(code);
     return shader;
@@ -399,7 +399,7 @@ static int
 opengl_link_program(struct prgm *prgm)
 {
     opengl_tex_converter_t *tc = prgm->tc;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     GLuint vertex_shader = BuildVertexShader(tc, interop->tex_count);
     GLuint shaders[] = { tc->fshader, vertex_shader };
@@ -506,11 +506,12 @@ static void
 opengl_deinit_program(vout_display_opengl_t *vgl, struct prgm *prgm)
 {
     opengl_tex_converter_t *tc = prgm->tc;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
     if (tc->p_module != NULL)
         module_unneed(tc, tc->p_module);
     else if (interop->priv != NULL)
         opengl_interop_generic_deinit(interop);
+    vlc_object_delete(tc->interop);
     if (prgm->id != 0)
         vgl->vt.DeleteProgram(prgm->id);
 
@@ -534,7 +535,14 @@ opengl_init_program(vout_display_opengl_t *vgl, vlc_video_context *context,
     if (tc == NULL)
         return VLC_ENOMEM;
 
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = vlc_object_create(tc, sizeof(*interop));
+    if (!interop)
+    {
+        vlc_object_delete(tc);
+        return VLC_ENOMEM;
+    }
+
+    tc->interop = interop;
 
     tc->gl = vgl->gl;
     tc->vt = &vgl->vt;
@@ -597,6 +605,7 @@ opengl_init_program(vout_display_opengl_t *vgl, vlc_video_context *context,
 
         if (desc == NULL)
         {
+            vlc_object_delete(interop);
             vlc_object_delete(tc);
             return VLC_EGENERIC;
         }
@@ -619,6 +628,7 @@ opengl_init_program(vout_display_opengl_t *vgl, vlc_video_context *context,
 
     if (ret != VLC_SUCCESS)
     {
+        vlc_object_delete(interop);
         vlc_object_delete(tc);
         return VLC_EGENERIC;
     }
@@ -629,6 +639,7 @@ opengl_init_program(vout_display_opengl_t *vgl, vlc_video_context *context,
                                          interop->sw_fmt.space);
     if (!fragment_shader)
     {
+        vlc_object_delete(interop);
         vlc_object_delete(tc);
         return VLC_EGENERIC;
     }
@@ -865,7 +876,7 @@ vout_display_opengl_t *vout_display_opengl_New(video_format_t *fmt,
     }
     GL_ASSERT_NOERROR();
 
-    const struct vlc_gl_interop *interop = &vgl->prgm->tc->interop;
+    const struct vlc_gl_interop *interop = vgl->prgm->tc->interop;
     /* Update the fmt to main program one */
     vgl->fmt = interop->fmt;
     /* The orientation is handled by the orientation matrix */
@@ -887,11 +898,11 @@ vout_display_opengl_t *vout_display_opengl_New(video_format_t *fmt,
     }
 
     /* Allocates our textures */
-    assert(!vgl->sub_prgm->tc->interop.handle_texs_gen);
+    assert(!vgl->sub_prgm->tc->interop->handle_texs_gen);
 
     if (!interop->handle_texs_gen)
     {
-        ret = GenTextures(&vgl->prgm->tc->interop, vgl->tex_width, vgl->tex_height,
+        ret = GenTextures(vgl->prgm->tc->interop, vgl->tex_width, vgl->tex_height,
                           vgl->texture);
         if (ret != VLC_SUCCESS)
         {
@@ -951,7 +962,7 @@ void vout_display_opengl_Delete(vout_display_opengl_t *vgl)
     vgl->vt.Finish();
     vgl->vt.Flush();
 
-    const struct vlc_gl_interop *interop = &vgl->prgm->tc->interop;
+    const struct vlc_gl_interop *interop = vgl->prgm->tc->interop;
     const size_t main_tex_count = interop->tex_count;
     const bool main_del_texs = !interop->handle_texs_gen;
 
@@ -1062,7 +1073,7 @@ int vout_display_opengl_Prepare(vout_display_opengl_t *vgl,
     GL_ASSERT_NOERROR();
 
     opengl_tex_converter_t *tc = vgl->prgm->tc;
-    const struct vlc_gl_interop *interop = &tc->interop;
+    const struct vlc_gl_interop *interop = tc->interop;
 
     /* Update the texture */
     int ret = interop->ops->update_textures(interop, vgl->texture, vgl->tex_width, vgl->tex_height,
@@ -1077,7 +1088,7 @@ int vout_display_opengl_Prepare(vout_display_opengl_t *vgl,
     vgl->region       = NULL;
 
     tc = vgl->sub_prgm->tc;
-    interop = &tc->interop;
+    interop = tc->interop;
     if (subpicture) {
 
         int count = 0;
@@ -1424,7 +1435,7 @@ static int SetupCoords(vout_display_opengl_t *vgl,
                        const float *left, const float *top,
                        const float *right, const float *bottom)
 {
-    const struct vlc_gl_interop *interop = &vgl->prgm->tc->interop;
+    const struct vlc_gl_interop *interop = vgl->prgm->tc->interop;
 
     GLfloat *vertexCoord, *textureCoord;
     GLushort *indices;
@@ -1488,7 +1499,7 @@ static int SetupCoords(vout_display_opengl_t *vgl,
 static void DrawWithShaders(vout_display_opengl_t *vgl, struct prgm *prgm)
 {
     opengl_tex_converter_t *tc = prgm->tc;
-    const struct vlc_gl_interop *interop = &tc->interop;
+    const struct vlc_gl_interop *interop = tc->interop;
     tc->pf_prepare_shader(tc, vgl->tex_width, vgl->tex_height, 1.0f);
 
     for (unsigned j = 0; j < interop->tex_count; j++) {
@@ -1552,7 +1563,7 @@ static void TextureCropForStereo(vout_display_opengl_t *vgl,
                                  float *left, float *top,
                                  float *right, float *bottom)
 {
-    const struct vlc_gl_interop *interop = &vgl->prgm->tc->interop;
+    const struct vlc_gl_interop *interop = vgl->prgm->tc->interop;
 
     float stereoCoefs[2];
     float stereoOffsets[2];
@@ -1602,8 +1613,8 @@ int vout_display_opengl_Display(vout_display_opengl_t *vgl,
         float right[PICTURE_PLANE_MAX];
         float bottom[PICTURE_PLANE_MAX];
         const opengl_tex_converter_t *tc = vgl->prgm->tc;
-        const struct vlc_gl_interop *interop = &tc->interop;
-        for (unsigned j = 0; j < tc->interop.tex_count; j++)
+        const struct vlc_gl_interop *interop = tc->interop;
+        for (unsigned j = 0; j < interop->tex_count; j++)
         {
             float scale_w = (float)interop->texs[j].w.num / interop->texs[j].w.den
                           / vgl->tex_width[j];
@@ -1644,7 +1655,7 @@ int vout_display_opengl_Display(vout_display_opengl_t *vgl,
     struct prgm *prgm = vgl->sub_prgm;
     GLuint program = prgm->id;
     opengl_tex_converter_t *tc = prgm->tc;
-    const struct vlc_gl_interop *interop = &tc->interop;
+    const struct vlc_gl_interop *interop = tc->interop;
     vgl->vt.UseProgram(program);
 
     vgl->vt.Enable(GL_BLEND);
diff --git a/modules/video_output/win32/direct3d9.c b/modules/video_output/win32/direct3d9.c
index 3d8fca052b53edc78b53c5605f38db3d92ecc6b0..01727c1f4f55e031fa826d2ef4b955bf8fcd43ed 100644
--- a/modules/video_output/win32/direct3d9.c
+++ b/modules/video_output/win32/direct3d9.c
@@ -1763,7 +1763,7 @@ static void
 GLConvClose(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *)obj;
-    struct glpriv *priv = tc->interop.priv;
+    struct glpriv *priv = tc->interop->priv;
 
     if (priv->gl_handle_d3d)
     {
@@ -1786,7 +1786,7 @@ static int
 GLConvOpen(vlc_object_t *obj)
 {
     opengl_tex_converter_t *tc = (void *) obj;
-    struct vlc_gl_interop *interop = &tc->interop;
+    struct vlc_gl_interop *interop = tc->interop;
 
     if (interop->fmt.i_chroma != VLC_CODEC_D3D9_OPAQUE
      && interop->fmt.i_chroma != VLC_CODEC_D3D9_OPAQUE_10B)