summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gst-libs/gst/egl/egl.c2
-rw-r--r--gst-libs/gst/egl/egl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/egl/egl.c b/gst-libs/gst/egl/egl.c
index 85fd600e6..7df4c035e 100644
--- a/gst-libs/gst/egl/egl.c
+++ b/gst-libs/gst/egl/egl.c
@@ -42,7 +42,7 @@ typedef struct
#define GST_EGL_IMAGE_MEMORY(mem) ((GstEGLImageMemory*)(mem))
gboolean
-gst_egl_image_memory_can_map (void)
+gst_egl_image_memory_is_mappable (void)
{
return FALSE;
}
diff --git a/gst-libs/gst/egl/egl.h b/gst-libs/gst/egl/egl.h
index 771a6f2fd..df3412995 100644
--- a/gst-libs/gst/egl/egl.h
+++ b/gst-libs/gst/egl/egl.h
@@ -45,7 +45,7 @@ typedef enum {
typedef struct _GstEGLDisplay GstEGLDisplay;
/* EGLImage GstMemory handling */
-gboolean gst_egl_image_memory_can_map (void);
+gboolean gst_egl_image_memory_is_mappable (void);
gboolean gst_is_egl_image_memory (GstMemory * mem);
EGLImageKHR gst_egl_image_memory_get_image (GstMemory * mem);
GstEGLDisplay * gst_egl_image_memory_get_display (GstMemory * mem);