summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-02-25 13:31:00 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-03 12:31:05 +0100
commit5e948472edcf1e5849d4f43bf57a23e7f59019e5 (patch)
tree71f302726272c5470c1f1d4148c6d7260516903f /gst-libs
parent4ca26a3c45e849eb493e23584e97927ea4aeb045 (diff)
downloadgstreamer-plugins-bad-5e948472edcf1e5849d4f43bf57a23e7f59019e5.tar.gz
egl: Rename gst_egl_image_memory_can_map() to is_mappable()
Diffstat (limited to 'gst-libs')
-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);