* 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.
*/
&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))
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;
}
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))
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))
/**
* 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
*
#endif
if (!handle)
- GST_WARNING ("Could not retreive current context");
+ GST_WARNING ("Could not retrieve current context");
return handle;
}
* 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
*
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;
}
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;
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);