summaryrefslogtreecommitdiff
path: root/sys/applemedia/glcontexthelper.c
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2016-10-05 12:19:12 +1100
committerMatthew Waters <matthew@centricular.com>2016-11-03 16:16:12 +1100
commit41a6448918edeae911e3e0cbcb43f20b7de24877 (patch)
tree8b5f195325294d28bcb11c1e05a1e4f595f06061 /sys/applemedia/glcontexthelper.c
parent0dc003bf30b0b5a85604646b5343bb52e3b0a4e2 (diff)
downloadgstreamer-plugins-bad-41a6448918edeae911e3e0cbcb43f20b7de24877.tar.gz
gl: GST_GL_TYPE -> GST_TYPE_GL
Some deprecated symbols are kept for backwards compatibility
Diffstat (limited to 'sys/applemedia/glcontexthelper.c')
-rw-r--r--sys/applemedia/glcontexthelper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/applemedia/glcontexthelper.c b/sys/applemedia/glcontexthelper.c
index 4e6f6175e..044f04234 100644
--- a/sys/applemedia/glcontexthelper.c
+++ b/sys/applemedia/glcontexthelper.c
@@ -34,14 +34,14 @@ _find_local_gl_context (GstGLContextHelper * ctxh)
gst_query_parse_context (query, &context);
if (context) {
s = gst_context_get_structure (context);
- gst_structure_get (s, "context", GST_GL_TYPE_CONTEXT, &gl_context, NULL);
+ gst_structure_get (s, "context", GST_TYPE_GL_CONTEXT, &gl_context, NULL);
}
}
if (!gl_context && gst_gl_run_query (ctxh->element, query, GST_PAD_SINK)) {
gst_query_parse_context (query, &context);
if (context) {
s = gst_context_get_structure (context);
- gst_structure_get (s, "context", GST_GL_TYPE_CONTEXT, &gl_context, NULL);
+ gst_structure_get (s, "context", GST_TYPE_GL_CONTEXT, &gl_context, NULL);
}
}