mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
spelling fixes to gst_library_load()
Original commit message from CVS: spelling fixes to gst_library_load()
This commit is contained in:
parent
1f4d20f689
commit
7cf6883096
1 changed files with 6 additions and 5 deletions
|
@ -119,17 +119,18 @@ void gst_plugin_load_all() {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_library_load:
|
* gst_library_load:
|
||||||
* @name: name of liabrary to load
|
* @name: name of library to load
|
||||||
*
|
*
|
||||||
* Load the named liabrary. Name should be given as
|
* Load the named library. Name should be given as
|
||||||
* "libliabrary.so".
|
* "liblibrary.so".
|
||||||
*
|
*
|
||||||
* Returns: whether the liabrary was loaded or not
|
* Returns: whether the library was loaded or not
|
||||||
*/
|
*/
|
||||||
gboolean gst_library_load(gchar *name) {
|
gboolean gst_library_load(gchar *name) {
|
||||||
// for now this is the same
|
// for now this is the same
|
||||||
return gst_plugin_load(name);
|
return gst_plugin_load(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_plugin_load:
|
* gst_plugin_load:
|
||||||
* @name: name of plugin to load
|
* @name: name of plugin to load
|
||||||
|
|
Loading…
Reference in a new issue