From 5e948472edcf1e5849d4f43bf57a23e7f59019e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 25 Feb 2013 13:31:00 +0100 Subject: [PATCH] egl: Rename gst_egl_image_memory_can_map() to is_mappable() --- gst-libs/gst/egl/egl.c | 2 +- gst-libs/gst/egl/egl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/egl/egl.c b/gst-libs/gst/egl/egl.c index 85fd600e6f..7df4c035e9 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 771a6f2fda..df3412995e 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);