Fix a common typo: retreive -> retrieve
authorThiago Santos <thiagoss@osg.samsung.com>
Fri, 5 Jun 2015 12:35:39 +0000 (09:35 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Fri, 5 Jun 2015 12:43:35 +0000 (09:43 -0300)
Seems to have been copy pasted around a few places

ext/gl/caopengllayersink.m
ext/gl/gstglfilterbin.c
ext/gl/gstglmixerbin.c
ext/gl/gstglsinkbin.c
ext/gl/gstglsrcbin.c
gst-libs/gst/gl/gstglcontext.c
gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c
sys/applemedia/avsamplevideosink.m
tests/check/elements/glimagesink.c

index e81541a41ec09be09b79c70c0208e2ee55565e9a..c2e3e027eab39eb640f13883253ab736b3c69a36 100644 (file)
@@ -22,7 +22,7 @@
  * SECTION:element-caopengllayersink
  *
  * caopengllayersink renders incoming video frames to CAOpenGLLayer that
- * can be retreived through the layer property and placed in the Core
+ * can be retrieved through the layer property and placed in the Core
  * Animation render tree.
  */
 
index a8e703e5d7b17803cb17c0ce1c2da5c7e134a82b..1dd43350aa6fefeca4d95ed09fcdedd78d174f00 100644 (file)
@@ -251,7 +251,7 @@ gst_gl_filter_bin_change_state (GstElement * element, GstStateChange transition)
               &self->filter);
 
         if (!self->filter) {
-          GST_ERROR_OBJECT (element, "Failed to retreive element");
+          GST_ERROR_OBJECT (element, "Failed to retrieve element");
           return GST_STATE_CHANGE_FAILURE;
         }
         if (!_connect_filter_element (self))
index ae8abef95aba648d5ff4c5fb1839556a36fbb1cf..d18c2d31e45c6ebee3e189ec1a52358bdfd31152 100644 (file)
@@ -483,7 +483,7 @@ gst_gl_mixer_bin_change_state (GstElement * element, GstStateChange transition)
               gst_gl_mixer_bin_signals[SIGNAL_CREATE_ELEMENT], 0, &self->mixer);
 
         if (!self->mixer) {
-          GST_ERROR_OBJECT (element, "Failed to retreive element");
+          GST_ERROR_OBJECT (element, "Failed to retrieve element");
           GST_OBJECT_UNLOCK (element);
           return GST_STATE_CHANGE_FAILURE;
         }
index 1f4bd531c3ba01f9b18fbb59f00303c207797dfb..1c9649a6092d544e60ab9be2ddb7b9916f5cc2f0 100644 (file)
@@ -261,7 +261,7 @@ gst_gl_sink_bin_change_state (GstElement * element, GstStateChange transition)
               gst_gl_sink_bin_signals[SIGNAL_CREATE_ELEMENT], 0, &self->sink);
 
         if (!self->sink) {
-          GST_ERROR_OBJECT (element, "Failed to retreive element");
+          GST_ERROR_OBJECT (element, "Failed to retrieve element");
           return GST_STATE_CHANGE_FAILURE;
         }
         if (!_connect_sink_element (self))
index 76510a0498527b1bbe1b6b69b4f1a7167e0da13f..2afbac56a06126164b7798020db712156747b43b 100644 (file)
@@ -241,7 +241,7 @@ gst_gl_src_bin_change_state (GstElement * element, GstStateChange transition)
               gst_gl_src_bin_signals[SIGNAL_CREATE_ELEMENT], 0, &self->src);
 
         if (!self->src) {
-          GST_ERROR_OBJECT (element, "Failed to retreive element");
+          GST_ERROR_OBJECT (element, "Failed to retrieve element");
           return GST_STATE_CHANGE_FAILURE;
         }
         if (!_connect_src_element (self))
index f3ea1b1657107288def5dfccc38722c20d4faed4..eb3b7e62602ed55040378544440318349bbcc1b6 100644 (file)
@@ -411,7 +411,7 @@ gst_gl_context_new_wrapped (GstGLDisplay * display, guintptr handle,
 
 /**
  * gst_gl_context_get_current_gl_context:
- * @context_type: a #GstGLPlatform specifying the type of context to retreive
+ * @context_type: a #GstGLPlatform specifying the type of context to retrieve
  *
  * Returns: The OpenGL context handle current in the calling thread or %NULL
  *
@@ -446,7 +446,7 @@ gst_gl_context_get_current_gl_context (GstGLPlatform context_type)
 #endif
 
   if (!handle)
-    GST_WARNING ("Could not retreive current context");
+    GST_WARNING ("Could not retrieve current context");
 
   return handle;
 }
@@ -711,7 +711,7 @@ _default_get_proc_address (GstGLContext * context, const gchar * name)
  * specific function does not exist, NULL is returned instead.
  *
  * Platform specfic functions (names starting 'egl', 'glX', 'wgl', etc) can also
- * be retreived using this method.
+ * be retrieved using this method.
  *
  * Returns: a function pointer or NULL
  *
index 4adcc122582affaa54cf491a285961769488995a..bfa7741a47692eecced98dfabe725deda0b6cdae 100644 (file)
@@ -387,7 +387,7 @@ gst_gl_window_wayland_egl_open (GstGLWindow * window, GError ** error)
   if (!display->display) {
     g_set_error (error, GST_GL_WINDOW_ERROR,
         GST_GL_WINDOW_ERROR_RESOURCE_UNAVAILABLE,
-        "Failed to retreive Wayland display");
+        "Failed to retrieve Wayland display");
     return FALSE;
   }
 
index b6ae56a2e7ca8b93a7b0c046c6e08cc47d5130b3..199e659375737372dff4ae1e89da27dbd18769cb 100644 (file)
@@ -632,7 +632,7 @@ _enqueue_sample (GstAVSampleVideoSink * av_sink, GstBuffer *buf)
 
   if (0 != CMVideoFormatDescriptionCreateForImageBuffer (kCFAllocatorDefault,
         pbuf, &v_format_desc)) {
-    GST_ERROR_OBJECT (av_sink, "Failed to retreive video format from "
+    GST_ERROR_OBJECT (av_sink, "Failed to retrieve video format from "
         "pixel buffer");
     CFRelease (pbuf);
     return FALSE;
index 3c6bb8d30d6122ab8cd894af9687f4d260620eac..702cb0a611ac6e14fc7486c74302928b97c4b8ac 100644 (file)
@@ -126,7 +126,7 @@ GST_START_TEST (test_query_drain)
   caps = gst_pad_get_current_caps (srcpad);
   fail_unless (gst_caps_is_fixed (caps));
 
-  /* Let's retreive the GstGLBufferPool to change its min
+  /* Let's retrieve the GstGLBufferPool to change its min
    * and max nb buffers. For that just send an allocation
    * query and change the pool config. */
   query = gst_query_new_allocation (caps, TRUE);