From 12540146eacc9d680e22ab4b7e5cd96ce875eada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 28 Feb 2017 10:53:04 +0200 Subject: [PATCH] gl: Rename gst_gl_get_affine_transformation_meta_as_ndc_ext() to prevent symbol conflict The same symbol also exists in libgstgl, although marked as private and internal. This has no effect when doing static linking and there's a symbol conflict. --- ext/gl/gstglvideomixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gl/gstglvideomixer.c b/ext/gl/gstglvideomixer.c index 1c8655792a..b9ea63ef54 100644 --- a/ext/gl/gstglvideomixer.c +++ b/ext/gl/gstglvideomixer.c @@ -1535,7 +1535,7 @@ gst_gl_video_mixer_callback (gpointer stuff) af_meta = gst_buffer_get_video_affine_transformation_meta (vagg_pad->buffer); - gst_gl_get_affine_transformation_meta_as_ndc (af_meta, matrix); + gst_gl_get_affine_transformation_meta_as_ndc_ext (af_meta, matrix); gst_gl_shader_set_uniform_matrix_4fv (video_mixer->shader, "u_transformation", 1, FALSE, matrix); }