mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
docs/manual/basics-elements.xml: Fix two typos.
Original commit message from CVS: * docs/manual/basics-elements.xml: Fix two typos.
This commit is contained in:
parent
186d11b516
commit
e050b8fd72
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* docs/manual/basics-elements.xml:
|
||||||
|
Fix two typos.
|
||||||
|
|
||||||
2005-02-02 Wim Taymans <wim@fluendo.com>
|
2005-02-02 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),
|
* gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),
|
||||||
|
|
|
@ -206,12 +206,12 @@ main (int argc,
|
||||||
/* create element, method #2 */
|
/* create element, method #2 */
|
||||||
factory = gst_element_factory_find ("fakesrc");
|
factory = gst_element_factory_find ("fakesrc");
|
||||||
if (!factory) {
|
if (!factory) {
|
||||||
g_print ("Failed to find fctory of type 'fakesrc'\n");
|
g_print ("Failed to find factory of type 'fakesrc'\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
element = gst_element_factory_create (factory, "source");
|
element = gst_element_factory_create (factory, "source");
|
||||||
if (!element) {
|
if (!element) {
|
||||||
g_print ("Failed to create element, even though it's factory exists!\n");
|
g_print ("Failed to create element, even though its factory exists!\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue