From ef63411dc806a2a594f18177966833e756d95ad2 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 14 Sep 2002 14:13:34 +0000 Subject: [PATCH] language updates from cameron Original commit message from CVS: language updates from cameron --- docs/manual/advanced-autoplugging.xml | 26 ++++++++-------- docs/manual/advanced-dparams.xml | 8 ++--- docs/manual/advanced-schedulers.xml | 8 ++--- docs/manual/advanced-threads.xml | 4 +-- docs/manual/appendix-programs.xml | 10 +++---- docs/manual/autoplugging.xml | 40 ++++++++++++------------- docs/manual/basics-bins.xml | 26 +++++++++------- docs/manual/basics-data.xml | 4 +-- docs/manual/basics-elements.xml | 10 +++---- docs/manual/basics-helloworld.xml | 29 +++++++++--------- docs/manual/basics-pads.xml | 56 +++++++++++++++++------------------ docs/manual/bins.xml | 26 +++++++++------- docs/manual/buffers.xml | 4 +-- docs/manual/connections.xml | 12 ++++---- docs/manual/cothreads.xml | 12 ++++---- docs/manual/dparams-app.xml | 8 ++--- docs/manual/dynamic.xml | 4 +-- docs/manual/elements.xml | 10 +++---- docs/manual/factories.xml | 26 ++++++++-------- docs/manual/gstreamer-manual.xml | 2 +- docs/manual/helloworld.xml | 29 +++++++++--------- docs/manual/highlevel-xml.xml | 10 +++---- docs/manual/intro-preface.xml | 2 +- docs/manual/intro.xml | 2 +- docs/manual/pads.xml | 56 +++++++++++++++++------------------ docs/manual/programs.xml | 10 +++---- docs/manual/queues.xml | 4 +-- docs/manual/schedulers.xml | 8 ++--- docs/manual/states.xml | 10 +++---- docs/manual/threads.xml | 4 +-- docs/manual/typedetection.xml | 12 ++++---- docs/manual/xml.xml | 10 +++---- 32 files changed, 246 insertions(+), 236 deletions(-) diff --git a/docs/manual/advanced-autoplugging.xml b/docs/manual/advanced-autoplugging.xml index f5112c1..7c53433 100644 --- a/docs/manual/advanced-autoplugging.xml +++ b/docs/manual/advanced-autoplugging.xml @@ -4,7 +4,7 @@ The small application we created in the previous chapter used the concept of a factory to create the elements. In this chapter we will show you how to use the factory concepts to create elements based - on what they do instead of how they are called. + on what they do instead of what they are called. @@ -28,9 +28,9 @@ While this mechanism is quite effective it also has some big problems: The elements are created based on their name. Indeed, we create an - element mad by explicitly stating the mad element's name. Our little + element, mad, by explicitly stating the mad element's name. Our little program therefore always uses the mad decoder element to decode - the MP3 audio stream, even if there are 3 other MP3 decoders in the + the MP3 audio stream, even if there are three other MP3 decoders in the system. We will see how we can use a more general way to create an MP3 decoder element. @@ -43,14 +43,14 @@ More on MIME Types - GStreamer uses MIME types to indentify the different types of data + GStreamer uses MIME types to identify the different types of data that can be handled by the elements. They are the high level mechanisms to make sure that everyone is talking about the right kind of data. - A MIME (Multipurpose Internet Mail Extension) types are a set of - string that denote a certain type of data. examples include: + A MIME (Multipurpose Internet Mail Extension) type is a pair of + strings that denote a certain type of data. Examples include: @@ -59,12 +59,12 @@ - audio/mpeg : mpeg audio + audio/mpeg : MPEG audio - video/mpeg : mpeg video + video/mpeg : MPEG video @@ -77,7 +77,7 @@ will see. - As we have seen in the previous chapter, the MIME types are added + As we have seen in the previous chapter, MIME types are added to the Capability structure of a pad. @@ -125,7 +125,7 @@ There is also an association between a MIME type and a file extension, - but the use of typefind functions (similar to file(1)) is preferred.. + but the use of typefind functions (similar to file(1)) is preferred. The type information is maintained in a list of @@ -149,7 +149,7 @@ struct _GstType { All operations on GstType occur via their guint16 id numbers, with - GstType structure private to the GStreamer + the GstType structure private to the GStreamer library. @@ -182,7 +182,7 @@ struct _GstType { type = gst_type_find_by_id (id); - This function will return NULL if the id was associated with + This function will return NULL if the id was not associated with any known GstType @@ -208,7 +208,7 @@ struct _GstType { - creating elements with the factory + Creating elements with the factory In the previous section we described how you could obtain an element factory using MIME types. One the factory has been diff --git a/docs/manual/advanced-dparams.xml b/docs/manual/advanced-dparams.xml index 2140ce0..52f5484 100644 --- a/docs/manual/advanced-dparams.xml +++ b/docs/manual/advanced-dparams.xml @@ -4,10 +4,10 @@ Getting Started - The dparams subsystem is contained within the + The Dynamic Parameters subsystem is contained within the gstcontrol library. - You need to include the header in your applications's source file: + You need to include the header in your application's source file: ... @@ -19,9 +19,9 @@ Your application should link to the shared library gstcontrol. - The gstcontrol library needs to be initialised + The gstcontrol library needs to be initialized when your application is run. This can be done after the the GStreamer - library has been initialised. + library has been initialized. ... diff --git a/docs/manual/advanced-schedulers.xml b/docs/manual/advanced-schedulers.xml index 8323aab..c676d92 100644 --- a/docs/manual/advanced-schedulers.xml +++ b/docs/manual/advanced-schedulers.xml @@ -1,8 +1,8 @@ Understanding schedulers - The scheduler is responsible for managing the plugins at runtime. The - main responsabilities are: + The scheduler is responsible for managing the plugins at runtime. Its + main responsibilities are: @@ -28,14 +28,14 @@ - The scheduler is a plugable component, this means that alternative + The scheduler is a plugable component; this means that alternative schedulers can be written and plugged into GStreamer. The default scheduler uses cothreads to schedule the plugins in a pipeline. Cothreads are fast and lightweight user-space threads. There is usually no need to interact with the scheduler directly, however - it some cases it is feasable to set a specific clock or force a specific + in some cases it is feasible to set a specific clock or force a specific plugin as the entry point in the pipeline. diff --git a/docs/manual/advanced-threads.xml b/docs/manual/advanced-threads.xml index 2f0ebaa..f4d5a10 100644 --- a/docs/manual/advanced-threads.xml +++ b/docs/manual/advanced-threads.xml @@ -33,7 +33,7 @@ The above program will create a thread with two elements in it. As soon as it is set to the PLAYING state, the thread will start to iterate - itself. You never need to manually iterate a thread. + itself. You never need to explicitly iterate a thread. @@ -47,7 +47,7 @@ between the threads, in a thread-safe fashion. This element is the queue, described more fully in . It doesn't matter if the queue is placed in the containing bin or in the thread - itself, but it needs to be present on one side of the other to enable + itself, but it needs to be present on one side or the other to enable inter-thread communication. diff --git a/docs/manual/appendix-programs.xml b/docs/manual/appendix-programs.xml index b7a692f..83959f6 100644 --- a/docs/manual/appendix-programs.xml +++ b/docs/manual/appendix-programs.xml @@ -35,10 +35,10 @@ gst-launch filesrc location=redpill.vob ! mpegdemux name=demux \ - You can also use the the parser in you own + You can also use the parser in you own code. GStreamer provides a function - gst_parse_launch () that you can use to construt a pipeline. - The following programs lets you create an mp3 pipeline using the + gst_parse_launch () that you can use to construct a pipeline. + The following program lets you create an MP3 pipeline using the gst_parse_launch () function: @@ -95,8 +95,8 @@ main (int argc, char *argv[]) A bare identifier (a string beginning with a letter and containing only letters, numbers, dashes, underscores, percent signs, or colons) - will create an element from a given elementfactory. In this example, - an instance of the "mad" mp3 decoding plugin will be created. + will create an element from a given element factory. In this example, + an instance of the "mad" MP3 decoding plugin will be created. diff --git a/docs/manual/autoplugging.xml b/docs/manual/autoplugging.xml index 8eba750..a846c0f 100644 --- a/docs/manual/autoplugging.xml +++ b/docs/manual/autoplugging.xml @@ -12,8 +12,8 @@ The autoplugger API is implemented in an abstract class. Autoplugger implementations reside in plugins and are therefore optional and can be optimized for a specific task. Two types of autopluggers exist: renderer - ones and non renderer ones. the renderer autopluggers will not have any - src pads while the non renderer ones do. The renderer autopluggers are + ones and non-renderer ones. The renderer autopluggers will not have any + source pads while the non-renderer ones do. The renderer autopluggers are mainly used for media playback while the non renderer ones are used for arbitrary format conversion. @@ -28,10 +28,10 @@ A list of all available autopluggers can be obtained with gst_autoplug_factory_get_list(). - If the autoplugger supports the RENDERER API, use - gst_autoplug_to_renderers() call to create a bin that connects the - src caps to the specified render elements. You can then add the bin - to a pipeline and run it. + If the autoplugger supports the RENDERER API, use the + gst_autoplug_to_renderers() function to create a bin that connects + the source caps to the specified render elements. You can then add + the bin to a pipeline and run it. @@ -61,8 +61,8 @@ If the autoplugger supports the CAPS API, use the gst_autoplug_to_caps() - function to connect the src caps to the destination caps. The created - bin will have src and sink pads compatible with the provided caps. + function to connect the source caps to the destination caps. The created + bin will have source and sink pads compatible with the provided caps. @@ -108,24 +108,24 @@ Add the autoplugcache element to a bin and connect the sink pad - to the src pad of an element with unknown caps. + to the source pad of an element with unknown caps. - Connect the src pad of the autoplugcache to the sink pad of the - typefind element. + Connect the source pad of the autoplugcache to the sink pad of + the typefind element. - Loop the pipeline until the typefind element has found a type. + Iterate the pipeline until the typefind element has found a type. Remove the typefind element and add the plugins needed to play - back the discovered media type to the autoplugcache src pad. + back the discovered media type to the autoplugcache source pad. @@ -151,9 +151,9 @@ Another approach to autoplugging The autoplug API is interesting, but often impractical. It is static; - it cannot deal with dynamic pipelines (insert ref here). What one - often wants is just an element to stick into a pipeline that will DWIM - (ref). Enter the spider. + it cannot deal with dynamic pipelines (insert ref here). What you + often want is just an element to stick into a pipeline that will DWIM + (Do What I Mean)(ref). Enter the spider. The spider element @@ -179,10 +179,10 @@ - Has request pads on the src side. This means that it can autoplug - one source stream into many sink streams. For example, a MPEG1 - system stream can have audio as well as video; that pipeline - would be represented in gst-launch syntax as + Has request pads on the source side. This means that it can + autoplug one source stream into many sink streams. For example, + an MPEG1 system stream can have audio as well as video; that + pipeline would be represented in gst-launch syntax as $ gst-launch filesrc location=my.mpeg1 ! spider ! { queue ! osssink } spider.src_%d! diff --git a/docs/manual/basics-bins.xml b/docs/manual/basics-bins.xml index 51da78a..478f766 100644 --- a/docs/manual/basics-bins.xml +++ b/docs/manual/basics-bins.xml @@ -49,8 +49,8 @@ Creating a bin - Bins register themselves in the GStreamer registry, so they can be - created in the normal way: + Bins are created in the same way that other elements are created. ie. + using an element factory, or any of the associated convenience functions: GstElement *bin, *thread, *pipeline; @@ -99,7 +99,7 @@ You can see that the name of the element becomes very handy - for retrieving the element from an bin by using the element's + for retrieving the element from a bin by using the element's name. gst_bin_get_by_name () will recursively search nested bins. @@ -120,7 +120,7 @@ ... - To remove an element from a bin use: + To remove an element from a bin, use: GstElement *element; @@ -129,8 +129,8 @@ ... - To add many elements to a bin at the same time, try the gst_bin_add_many - () API. Remember to pass NULL as the last argument. + To add many elements to a bin at the same time, use the gst_bin_add_many + () function. Remember to pass NULL as the last argument. GstElement *filesrc, *decoder, *audiosink; @@ -146,8 +146,8 @@ Custom bins The application programmer can create custom bins packed with elements - to perform a specific task. This allow you to write an MPEG audio - decoder with just the follwing lines of code: + to perform a specific task. This allows you to write an MPEG audio + decoder with just the following lines of code: @@ -169,7 +169,8 @@ from a GstThread, which begins to play as soon as its state is set to PLAYING. Other bin types may need explicit iteration. For more information, see . - + + Custom bins can be created with a plugin or an XML description. You will find more information about creating custom bin in the Plugin Writers Guide (FIXME ref). @@ -227,8 +228,11 @@ In the above example, the bin now also has a pad: the pad called 'sink' - of the given element. We can now, for example, connect the srcpad of - a filesrc to the bin with: + of the given element. + + + We can now, for example, connect the source pad of a filesrc element + to the bin with: GstElement *filesrc; diff --git a/docs/manual/basics-data.xml b/docs/manual/basics-data.xml index b908b4e..23b831a 100644 --- a/docs/manual/basics-data.xml +++ b/docs/manual/basics-data.xml @@ -3,7 +3,7 @@ Buffers contain the data that will flow through the pipeline you have created. A source element will typically create a new buffer and pass - it through the pad to the next element in the chain. When using the + it through a pad to the next element in the chain. When using the GStreamer infrastructure to create a media pipeline you will not have to deal with buffers yourself; the elements will do that for you. @@ -43,7 +43,7 @@ The simple case is that a buffer is created, memory allocated, data put - in it, and passed to the next filter. That filter reads the data, does + in it, and passed to the next element. That element reads the data, does something (like creating a new buffer and decoding into it), and unreferences the buffer. This causes the data to be freed and the buffer to be destroyed. A typical MPEG audio decoder works like this. diff --git a/docs/manual/basics-elements.xml b/docs/manual/basics-elements.xml index 9b6994f..d301bea 100644 --- a/docs/manual/basics-elements.xml +++ b/docs/manual/basics-elements.xml @@ -28,7 +28,7 @@ Below you see how we will visualize the element. - We always draw a src pad to the right of the element. + We always draw a source pad to the right of the element.
Visualisation of a source element @@ -40,8 +40,8 @@
Source elements do not accept data, they only generate data. You can - see this in the figure because it only has a src pad. A src pad can - only generate data. + see this in the figure because it only has a source pad. A source + pad can only generate data. @@ -49,7 +49,7 @@ Filters and codecs Filter elements both have input and output pads. They operate on - data they receive in their sink pads and produce data on their src + data they receive in their sink pads and produce data on their source pads. For example, MPEG decoders and volume filters would fall into this category. @@ -68,7 +68,7 @@ The above figure shows the visualisation of a filter element. - This element has one sink (input) pad and one src (output) pad. + This element has one sink (input) pad and one source (output) pad. Sink pads are drawn on the left of the element.
diff --git a/docs/manual/basics-helloworld.xml b/docs/manual/basics-helloworld.xml index 293937a..393f58c 100644 --- a/docs/manual/basics-helloworld.xml +++ b/docs/manual/basics-helloworld.xml @@ -4,7 +4,7 @@ This chapter describes the most rudimentary aspects of a GStreamer application, including initializing the libraries, creating elements, packing them into a pipeline and playing, - pause and stop the pipeline. + pausing and stopping the pipeline. @@ -12,7 +12,7 @@ We will create a simple first application, a complete MP3 player, using standard GStreamer components. The player - will read from a file that is given as the first argument of the program. + will read from a file that is given as the first argument to the program. @@ -91,9 +91,9 @@ main (int argc, char *argv[]) - We are going to create 3 elements and one pipeline. Since all elements - share the same base type, GstElement, we can - define them as: + We are going to create three elements and one pipeline. Since all + elements share the same base type, GstElement, + we can define them as: ... @@ -104,14 +104,14 @@ main (int argc, char *argv[]) Next, we are going to create an empty pipeline. As you have seen in the basic introduction, this pipeline will hold and manage all the - elements we are going to stuff into it. + elements we are going to pack into it. /* create a new pipeline to hold the elements */ pipeline = gst_pipeline_new ("pipeline"); - We use the standard constructor for a pipeline: gst_pipeline_new ("name"). + We use the standard constructor for a pipeline: gst_pipeline_new (). @@ -149,7 +149,7 @@ main (int argc, char *argv[]) Finally we create our audio sink element. This element will be able - to playback the audio using OSS. + to play back the audio using OSS. /* and an audio sink */ @@ -203,7 +203,7 @@ main (int argc, char *argv[]) - Since we do not use threads, nothing will happen yet. We manually have to + Since we do not use threads, nothing will happen yet. We have to call gst_bin_iterate() to execute one iteration of the pipeline. @@ -211,7 +211,7 @@ main (int argc, char *argv[]) The gst_bin_iterate() function will return TRUE as long as something - interesting happended inside the pipeline. When the end-of-file has been + interesting happened inside the pipeline. When the end-of-file has been reached the _iterate function will return FALSE and we can end the loop. @@ -257,13 +257,14 @@ main (int argc, char *argv[]) Conclusion This concludes our first example. As you see, setting up a pipeline - is very lowlevel but powerful. You will later in this manual how - you can create a custom MP3 element with a more high level API. + is very low-level but powerful. You will see later in this manual how + you can create a custom MP3 element with a higher-level API. It should be clear from the example that we can very easily replace the - filesrc element with an httpsrc, giving you instant network streaming. - An element could be build to handle icecast connections, for example. + filesrc element with an httpsrc element, giving you instant network + streaming. An element could be built to handle icecast connections, + for example. We can also choose to use another type of sink instead of the audiosink. diff --git a/docs/manual/basics-pads.xml b/docs/manual/basics-pads.xml index 8353326..a53ac82 100644 --- a/docs/manual/basics-pads.xml +++ b/docs/manual/basics-pads.xml @@ -24,7 +24,7 @@ This function will get the pad named "src" from the given element. - Alternatively, you can also request a GList of pads from the element. The + Alternatively, you can request a GList of pads from the element. The following code example will print the names of all the pads of an element. @@ -49,8 +49,8 @@ gst_pad_get_direction (GstPad *pad) can be used to query if the pad - is a sink or a src pad. Remember a src pad is a pad that can output - data and a sink pad is one that accepts data. + is a sink or a source pad. Remember that a source pad is a pad that + can output data and a sink pad is one that accepts data. You can get the parent of the pad, this is the element that this pad belongs to, @@ -62,9 +62,9 @@ Dynamic pads Some elements might not have their pads when they are created. This - can, for example, happen with an MPEG2 system demuxer. The demuxer will - create its pads at runtime when it detects the different elementary - streams in the MPEG2 system stream. + can happen, for example, with an MPEG2 system demultiplexer. The + demultiplexer will create its pads at runtime when it detects the + different elementary streams in the MPEG2 system stream. Running gst-inspect mpegdemux will show that @@ -102,7 +102,7 @@ main(int argc, char *argv[]) GstElement *pipeline; GstElement *mpeg2parser; - // create pipeline and do something usefull + // create pipeline and do something useful ... mpeg2parser = gst_element_factory_make ("mpegdemux", "mpegdemux"); @@ -124,8 +124,8 @@ main(int argc, char *argv[]) Request pads An element can also have request pads. These pads are not created - automatically but are only created on demand. This is very usefull - for muxers, aggregators and tee elements. + automatically but are only created on demand. This is very useful + for multiplexers, aggregators and tee elements. The tee element, for example, has one input pad and a request padtemplate for the @@ -152,10 +152,10 @@ main(int argc, char *argv[]) It is also possible to request a pad that is compatible with another - padtemplate. This is very usefull if you want to connect an element to - a muxer element and you need to request a pad that is compatible. The - gst_element_get_compatible_pad is used to request a compatible pad, - as is shown in the next example. + pad template. This is very useful if you want to connect an element + to a multiplexer element and you need to request a pad that is + compatible. The gst_element_get_compatible_pad is used to request + a compatible pad, as is shown in the next example. ... @@ -217,9 +217,9 @@ struct _GstCaps { three properties: layer, bitrate and framed. - The src pad (output pad) is called 'src' and outputs data of MIME - type 'audio/raw'. It also has four properties: format, depth, rate - and channels. + The source pad (output pad) is called 'src' and outputs data of + MIME type 'audio/raw'. It also has four properties: format, depth, + rate and channels. Pads: @@ -247,8 +247,8 @@ Pads: What are properties - Properties are used to describe extra information for the - capabilities. The properties basically exist of a key (a string) and + Properties are used to describe extra information for + capabilities. The properties basically consist of a key (a string) and a value. There are different possibile value types that can be used: @@ -261,8 +261,8 @@ Pads: An integer range value. The property denotes a range of possible - values. In the case of the mad element: the src pad has a property - rate that can go from 11025 to 48000. + values. In the case of the mad element, the source pad has a + property rate that can go from 11025 to 48000. @@ -273,7 +273,7 @@ Pads: a fourcc value: this is a value that is commonly used to describe an encoding for video, - as used be the AVI specification. + as used by the AVI specification. @@ -300,7 +300,7 @@ Pads: - What are the capabilities used for? + What capabilities are used for Capabilities describe in great detail the type of media that is handled by the pads. They are mostly used for: @@ -343,17 +343,17 @@ Pads: - Creating capabilities structures + Creating capability structures - While the capabilities are mainly used inside the plugin to describe - the media type of the pads, the application programmer also has - to have basic understanding of caps in order to interface with the + While capabilities are mainly used inside a plugin to describe the + media type of the pads, the application programmer also has to have + basic understanding of capabilities in order to interface with the plugins, specially when using the autopluggers. As we said, a capability has a name, a mime-type and some properties. The signature of the function to create a new - GstCaps structure is like: + GstCaps structure is: GstCaps* gst_caps_new (const gchar *name, const gchar *mime, GstProps *props); @@ -442,7 +442,7 @@ GstProps* gst_props_new (const gchar *firstname, ...); NULL ); - Optionally the convenient shortcut macro can be used. The above complex + Optionally, the convenient shortcut macro can be used. The above complex capability can be created with: GstCaps *newcaps; diff --git a/docs/manual/bins.xml b/docs/manual/bins.xml index 51da78a..478f766 100644 --- a/docs/manual/bins.xml +++ b/docs/manual/bins.xml @@ -49,8 +49,8 @@ Creating a bin - Bins register themselves in the GStreamer registry, so they can be - created in the normal way: + Bins are created in the same way that other elements are created. ie. + using an element factory, or any of the associated convenience functions: GstElement *bin, *thread, *pipeline; @@ -99,7 +99,7 @@ You can see that the name of the element becomes very handy - for retrieving the element from an bin by using the element's + for retrieving the element from a bin by using the element's name. gst_bin_get_by_name () will recursively search nested bins. @@ -120,7 +120,7 @@ ... - To remove an element from a bin use: + To remove an element from a bin, use: GstElement *element; @@ -129,8 +129,8 @@ ... - To add many elements to a bin at the same time, try the gst_bin_add_many - () API. Remember to pass NULL as the last argument. + To add many elements to a bin at the same time, use the gst_bin_add_many + () function. Remember to pass NULL as the last argument. GstElement *filesrc, *decoder, *audiosink; @@ -146,8 +146,8 @@ Custom bins The application programmer can create custom bins packed with elements - to perform a specific task. This allow you to write an MPEG audio - decoder with just the follwing lines of code: + to perform a specific task. This allows you to write an MPEG audio + decoder with just the following lines of code: @@ -169,7 +169,8 @@ from a GstThread, which begins to play as soon as its state is set to PLAYING. Other bin types may need explicit iteration. For more information, see . - + + Custom bins can be created with a plugin or an XML description. You will find more information about creating custom bin in the Plugin Writers Guide (FIXME ref). @@ -227,8 +228,11 @@ In the above example, the bin now also has a pad: the pad called 'sink' - of the given element. We can now, for example, connect the srcpad of - a filesrc to the bin with: + of the given element. + + + We can now, for example, connect the source pad of a filesrc element + to the bin with: GstElement *filesrc; diff --git a/docs/manual/buffers.xml b/docs/manual/buffers.xml index b908b4e..23b831a 100644 --- a/docs/manual/buffers.xml +++ b/docs/manual/buffers.xml @@ -3,7 +3,7 @@ Buffers contain the data that will flow through the pipeline you have created. A source element will typically create a new buffer and pass - it through the pad to the next element in the chain. When using the + it through a pad to the next element in the chain. When using the GStreamer infrastructure to create a media pipeline you will not have to deal with buffers yourself; the elements will do that for you. @@ -43,7 +43,7 @@ The simple case is that a buffer is created, memory allocated, data put - in it, and passed to the next filter. That filter reads the data, does + in it, and passed to the next element. That element reads the data, does something (like creating a new buffer and decoding into it), and unreferences the buffer. This causes the data to be freed and the buffer to be destroyed. A typical MPEG audio decoder works like this. diff --git a/docs/manual/connections.xml b/docs/manual/connections.xml index b7160c4..68eaa81 100644 --- a/docs/manual/connections.xml +++ b/docs/manual/connections.xml @@ -15,16 +15,16 @@
By connecting these three elements, we have created a very simple - pipeline. The effect of this will be that the output of the source element + chain. The effect of this will be that the output of the source element (element1) will be used as input for the filter element (element2). The filter element will do something with the data and send the result to the final sink element (element3). - Imagine the above graph as a simple mpeg audio decoder. The source - element is a disk source, the filter element is the mpeg decoder and + Imagine the above graph as a simple MPEG audio decoder. The source + element is a disk source, the filter element is the MPEG decoder and the sink element is your audiocard. We will use this simple graph to - construct an mpeg player later in this manual. + construct an MPEG player later in this manual. @@ -88,8 +88,8 @@ You can query if a pad is connected with GST_PAD_IS_CONNECTED (pad).
- To query for the GstPad this srcpad is connected - to, use gst_pad_get_peer (srcpad). + To query for the GstPad a pad is connected to, use + gst_pad_get_peer (pad). diff --git a/docs/manual/cothreads.xml b/docs/manual/cothreads.xml index f32373b..3589a80 100644 --- a/docs/manual/cothreads.xml +++ b/docs/manual/cothreads.xml @@ -31,7 +31,7 @@ Before proceding to the concept of loop-based elements we will first - explain the chain-based elements + explain the chain-based elements. @@ -100,7 +100,7 @@ chain_function (GstPad *pad, GstBuffer *buffer) When the request for a buffer cannot immediatly satisfied, the control will be given to the source element of the loop-based element until it performs a push on its source pad. At that time the control is handed - back to the loop-based element, etc... The the execution trace can get + back to the loop-based element, etc... The execution trace can get fairly complex using cothreads when there are multiple input/output pads for the loop-based element. Cothread switches are performed within the call to gst_pad_pull and gst_pad_push; from the perspective of @@ -110,10 +110,10 @@ chain_function (GstPad *pad, GstBuffer *buffer) Loop based elements are mainly used for the more complex elements that need a specific amount of data before they can start to produce - output. An example of such an element is the mpeg video decoder. the - element will pull a buffer, performs some decoding on it and optionally - requests more buffers to decode, when a complete video frame has - been decoded, a buffer is send out. For example, any plugin using the + output. An example of such an element is the MPEG video decoder. The + element will pull a buffer, perform some decoding on it and optionally + request more buffers to decode, and when a complete video frame has + been decoded, a buffer is sent out. For example, any plugin using the bytestream library will need to be loop-based. diff --git a/docs/manual/dparams-app.xml b/docs/manual/dparams-app.xml index 2140ce0..52f5484 100644 --- a/docs/manual/dparams-app.xml +++ b/docs/manual/dparams-app.xml @@ -4,10 +4,10 @@ Getting Started - The dparams subsystem is contained within the + The Dynamic Parameters subsystem is contained within the gstcontrol library. - You need to include the header in your applications's source file: + You need to include the header in your application's source file: ... @@ -19,9 +19,9 @@ Your application should link to the shared library gstcontrol. - The gstcontrol library needs to be initialised + The gstcontrol library needs to be initialized when your application is run. This can be done after the the GStreamer - library has been initialised. + library has been initialized. ... diff --git a/docs/manual/dynamic.xml b/docs/manual/dynamic.xml index 6b81be0..f018174 100644 --- a/docs/manual/dynamic.xml +++ b/docs/manual/dynamic.xml @@ -2,14 +2,14 @@ Dynamic pipelines In this chapter we will see how you can create a dynamic pipeline. A - dynamic pipeline is a pipeline that is updated or created while media + dynamic pipeline is a pipeline that is updated or created while data is flowing through it. We will create a partial pipeline first and add more elements while the pipeline is playing. Dynamic pipelines cause all sorts of scheduling issues and will remain a topic of research for a long time in GStreamer. - We will show how to create an mpeg1 video player using dynamic pipelines. + We will show how to create an MPEG1 video player using dynamic pipelines. As you have seen in the pad section, we can attach a signal to an element when a pad is created. We will use this to create our MPEG1 player. diff --git a/docs/manual/elements.xml b/docs/manual/elements.xml index 9b6994f..d301bea 100644 --- a/docs/manual/elements.xml +++ b/docs/manual/elements.xml @@ -28,7 +28,7 @@ Below you see how we will visualize the element. - We always draw a src pad to the right of the element. + We always draw a source pad to the right of the element.
Visualisation of a source element @@ -40,8 +40,8 @@
Source elements do not accept data, they only generate data. You can - see this in the figure because it only has a src pad. A src pad can - only generate data. + see this in the figure because it only has a source pad. A source + pad can only generate data. @@ -49,7 +49,7 @@ Filters and codecs Filter elements both have input and output pads. They operate on - data they receive in their sink pads and produce data on their src + data they receive in their sink pads and produce data on their source pads. For example, MPEG decoders and volume filters would fall into this category. @@ -68,7 +68,7 @@ The above figure shows the visualisation of a filter element. - This element has one sink (input) pad and one src (output) pad. + This element has one sink (input) pad and one source (output) pad. Sink pads are drawn on the left of the element.
diff --git a/docs/manual/factories.xml b/docs/manual/factories.xml index f5112c1..7c53433 100644 --- a/docs/manual/factories.xml +++ b/docs/manual/factories.xml @@ -4,7 +4,7 @@ The small application we created in the previous chapter used the concept of a factory to create the elements. In this chapter we will show you how to use the factory concepts to create elements based - on what they do instead of how they are called. + on what they do instead of what they are called. @@ -28,9 +28,9 @@ While this mechanism is quite effective it also has some big problems: The elements are created based on their name. Indeed, we create an - element mad by explicitly stating the mad element's name. Our little + element, mad, by explicitly stating the mad element's name. Our little program therefore always uses the mad decoder element to decode - the MP3 audio stream, even if there are 3 other MP3 decoders in the + the MP3 audio stream, even if there are three other MP3 decoders in the system. We will see how we can use a more general way to create an MP3 decoder element. @@ -43,14 +43,14 @@ More on MIME Types - GStreamer uses MIME types to indentify the different types of data + GStreamer uses MIME types to identify the different types of data that can be handled by the elements. They are the high level mechanisms to make sure that everyone is talking about the right kind of data. - A MIME (Multipurpose Internet Mail Extension) types are a set of - string that denote a certain type of data. examples include: + A MIME (Multipurpose Internet Mail Extension) type is a pair of + strings that denote a certain type of data. Examples include: @@ -59,12 +59,12 @@ - audio/mpeg : mpeg audio + audio/mpeg : MPEG audio - video/mpeg : mpeg video + video/mpeg : MPEG video @@ -77,7 +77,7 @@ will see. - As we have seen in the previous chapter, the MIME types are added + As we have seen in the previous chapter, MIME types are added to the Capability structure of a pad. @@ -125,7 +125,7 @@ There is also an association between a MIME type and a file extension, - but the use of typefind functions (similar to file(1)) is preferred.. + but the use of typefind functions (similar to file(1)) is preferred. The type information is maintained in a list of @@ -149,7 +149,7 @@ struct _GstType { All operations on GstType occur via their guint16 id numbers, with - GstType structure private to the GStreamer + the GstType structure private to the GStreamer library. @@ -182,7 +182,7 @@ struct _GstType { type = gst_type_find_by_id (id); - This function will return NULL if the id was associated with + This function will return NULL if the id was not associated with any known GstType @@ -208,7 +208,7 @@ struct _GstType { - creating elements with the factory + Creating elements with the factory In the previous section we described how you could obtain an element factory using MIME types. One the factory has been diff --git a/docs/manual/gstreamer-manual.xml b/docs/manual/gstreamer-manual.xml index 9503d68..479bafa 100644 --- a/docs/manual/gstreamer-manual.xml +++ b/docs/manual/gstreamer-manual.xml @@ -233,7 +233,7 @@ GStreamer comes prepackaged with a few - programs. and some usefull debugging options. + programs, and some useful debugging options. diff --git a/docs/manual/helloworld.xml b/docs/manual/helloworld.xml index 293937a..393f58c 100644 --- a/docs/manual/helloworld.xml +++ b/docs/manual/helloworld.xml @@ -4,7 +4,7 @@ This chapter describes the most rudimentary aspects of a GStreamer application, including initializing the libraries, creating elements, packing them into a pipeline and playing, - pause and stop the pipeline. + pausing and stopping the pipeline. @@ -12,7 +12,7 @@ We will create a simple first application, a complete MP3 player, using standard GStreamer components. The player - will read from a file that is given as the first argument of the program. + will read from a file that is given as the first argument to the program. @@ -91,9 +91,9 @@ main (int argc, char *argv[]) - We are going to create 3 elements and one pipeline. Since all elements - share the same base type, GstElement, we can - define them as: + We are going to create three elements and one pipeline. Since all + elements share the same base type, GstElement, + we can define them as: ... @@ -104,14 +104,14 @@ main (int argc, char *argv[]) Next, we are going to create an empty pipeline. As you have seen in the basic introduction, this pipeline will hold and manage all the - elements we are going to stuff into it. + elements we are going to pack into it. /* create a new pipeline to hold the elements */ pipeline = gst_pipeline_new ("pipeline"); - We use the standard constructor for a pipeline: gst_pipeline_new ("name"). + We use the standard constructor for a pipeline: gst_pipeline_new (). @@ -149,7 +149,7 @@ main (int argc, char *argv[]) Finally we create our audio sink element. This element will be able - to playback the audio using OSS. + to play back the audio using OSS. /* and an audio sink */ @@ -203,7 +203,7 @@ main (int argc, char *argv[]) - Since we do not use threads, nothing will happen yet. We manually have to + Since we do not use threads, nothing will happen yet. We have to call gst_bin_iterate() to execute one iteration of the pipeline. @@ -211,7 +211,7 @@ main (int argc, char *argv[]) The gst_bin_iterate() function will return TRUE as long as something - interesting happended inside the pipeline. When the end-of-file has been + interesting happened inside the pipeline. When the end-of-file has been reached the _iterate function will return FALSE and we can end the loop. @@ -257,13 +257,14 @@ main (int argc, char *argv[]) Conclusion This concludes our first example. As you see, setting up a pipeline - is very lowlevel but powerful. You will later in this manual how - you can create a custom MP3 element with a more high level API. + is very low-level but powerful. You will see later in this manual how + you can create a custom MP3 element with a higher-level API. It should be clear from the example that we can very easily replace the - filesrc element with an httpsrc, giving you instant network streaming. - An element could be build to handle icecast connections, for example. + filesrc element with an httpsrc element, giving you instant network + streaming. An element could be built to handle icecast connections, + for example. We can also choose to use another type of sink instead of the audiosink. diff --git a/docs/manual/highlevel-xml.xml b/docs/manual/highlevel-xml.xml index 042742f..145ba44 100644 --- a/docs/manual/highlevel-xml.xml +++ b/docs/manual/highlevel-xml.xml @@ -18,9 +18,9 @@ We create a simple pipeline and write it to stdout with - gst_xml_write_file (). The following code constructs an mp3 player + gst_xml_write_file (). The following code constructs an MP3 player pipeline with two threads and then writes out the XML both to stdout - and to a file. Use this program with one argument: the mp3 file on disk. + and to a file. Use this program with one argument: the MP3 file on disk. @@ -170,7 +170,7 @@ main(int argc, char *argv[]) In addition to loading a file, you can also load a from a xmlDocPtr and an in memory buffer using gst_xml_parse_doc and gst_xml_parse_memory - respectivily. both of these methods return a gboolean indicating + respectively. Both of these methods return a gboolean indicating success or failure of the requested action. @@ -180,7 +180,7 @@ main(int argc, char *argv[]) It is possible to add custom XML tags to the core XML created with gst_xml_write. This feature can be used by an application to add more - information to the save plugins. the editor will for example insert + information to the save plugins. The editor will for example insert the position of the elements on the screen using the custom XML tags. @@ -258,7 +258,7 @@ object_saved (GstObject *object, xmlNodePtr parent, gpointer data) Whenever a new object has been loaded, the xml_loaded function will - be called. this function looks like: + be called. This function looks like: static void diff --git a/docs/manual/intro-preface.xml b/docs/manual/intro-preface.xml index df39637..a78adff 100644 --- a/docs/manual/intro-preface.xml +++ b/docs/manual/intro-preface.xml @@ -25,7 +25,7 @@ One of the the most obvious uses of GStreamer is using it to build a media player. GStreamer already includes components for building a media player that can support a very wide variety of formats, including - mp3, Ogg Vorbis, MPEG1, MPEG2, AVI, Quicktime, mod and so on. GStreamer, + MP3, Ogg Vorbis, MPEG1, MPEG2, AVI, Quicktime, mod and so on. GStreamer, however, is much more than just another media player. Its main advantages are that the pluggable components can be mixed and matched into arbitrary pipelines so that it's possible to write a full-fledged video or audio diff --git a/docs/manual/intro.xml b/docs/manual/intro.xml index df39637..a78adff 100644 --- a/docs/manual/intro.xml +++ b/docs/manual/intro.xml @@ -25,7 +25,7 @@ One of the the most obvious uses of GStreamer is using it to build a media player. GStreamer already includes components for building a media player that can support a very wide variety of formats, including - mp3, Ogg Vorbis, MPEG1, MPEG2, AVI, Quicktime, mod and so on. GStreamer, + MP3, Ogg Vorbis, MPEG1, MPEG2, AVI, Quicktime, mod and so on. GStreamer, however, is much more than just another media player. Its main advantages are that the pluggable components can be mixed and matched into arbitrary pipelines so that it's possible to write a full-fledged video or audio diff --git a/docs/manual/pads.xml b/docs/manual/pads.xml index 8353326..a53ac82 100644 --- a/docs/manual/pads.xml +++ b/docs/manual/pads.xml @@ -24,7 +24,7 @@ This function will get the pad named "src" from the given element. - Alternatively, you can also request a GList of pads from the element. The + Alternatively, you can request a GList of pads from the element. The following code example will print the names of all the pads of an element. @@ -49,8 +49,8 @@ gst_pad_get_direction (GstPad *pad) can be used to query if the pad - is a sink or a src pad. Remember a src pad is a pad that can output - data and a sink pad is one that accepts data. + is a sink or a source pad. Remember that a source pad is a pad that + can output data and a sink pad is one that accepts data. You can get the parent of the pad, this is the element that this pad belongs to, @@ -62,9 +62,9 @@ Dynamic pads Some elements might not have their pads when they are created. This - can, for example, happen with an MPEG2 system demuxer. The demuxer will - create its pads at runtime when it detects the different elementary - streams in the MPEG2 system stream. + can happen, for example, with an MPEG2 system demultiplexer. The + demultiplexer will create its pads at runtime when it detects the + different elementary streams in the MPEG2 system stream. Running gst-inspect mpegdemux will show that @@ -102,7 +102,7 @@ main(int argc, char *argv[]) GstElement *pipeline; GstElement *mpeg2parser; - // create pipeline and do something usefull + // create pipeline and do something useful ... mpeg2parser = gst_element_factory_make ("mpegdemux", "mpegdemux"); @@ -124,8 +124,8 @@ main(int argc, char *argv[]) Request pads An element can also have request pads. These pads are not created - automatically but are only created on demand. This is very usefull - for muxers, aggregators and tee elements. + automatically but are only created on demand. This is very useful + for multiplexers, aggregators and tee elements. The tee element, for example, has one input pad and a request padtemplate for the @@ -152,10 +152,10 @@ main(int argc, char *argv[]) It is also possible to request a pad that is compatible with another - padtemplate. This is very usefull if you want to connect an element to - a muxer element and you need to request a pad that is compatible. The - gst_element_get_compatible_pad is used to request a compatible pad, - as is shown in the next example. + pad template. This is very useful if you want to connect an element + to a multiplexer element and you need to request a pad that is + compatible. The gst_element_get_compatible_pad is used to request + a compatible pad, as is shown in the next example. ... @@ -217,9 +217,9 @@ struct _GstCaps { three properties: layer, bitrate and framed. - The src pad (output pad) is called 'src' and outputs data of MIME - type 'audio/raw'. It also has four properties: format, depth, rate - and channels. + The source pad (output pad) is called 'src' and outputs data of + MIME type 'audio/raw'. It also has four properties: format, depth, + rate and channels. Pads: @@ -247,8 +247,8 @@ Pads: What are properties - Properties are used to describe extra information for the - capabilities. The properties basically exist of a key (a string) and + Properties are used to describe extra information for + capabilities. The properties basically consist of a key (a string) and a value. There are different possibile value types that can be used: @@ -261,8 +261,8 @@ Pads: An integer range value. The property denotes a range of possible - values. In the case of the mad element: the src pad has a property - rate that can go from 11025 to 48000. + values. In the case of the mad element, the source pad has a + property rate that can go from 11025 to 48000. @@ -273,7 +273,7 @@ Pads: a fourcc value: this is a value that is commonly used to describe an encoding for video, - as used be the AVI specification. + as used by the AVI specification. @@ -300,7 +300,7 @@ Pads: - What are the capabilities used for? + What capabilities are used for Capabilities describe in great detail the type of media that is handled by the pads. They are mostly used for: @@ -343,17 +343,17 @@ Pads: - Creating capabilities structures + Creating capability structures - While the capabilities are mainly used inside the plugin to describe - the media type of the pads, the application programmer also has - to have basic understanding of caps in order to interface with the + While capabilities are mainly used inside a plugin to describe the + media type of the pads, the application programmer also has to have + basic understanding of capabilities in order to interface with the plugins, specially when using the autopluggers. As we said, a capability has a name, a mime-type and some properties. The signature of the function to create a new - GstCaps structure is like: + GstCaps structure is: GstCaps* gst_caps_new (const gchar *name, const gchar *mime, GstProps *props); @@ -442,7 +442,7 @@ GstProps* gst_props_new (const gchar *firstname, ...); NULL ); - Optionally the convenient shortcut macro can be used. The above complex + Optionally, the convenient shortcut macro can be used. The above complex capability can be created with: GstCaps *newcaps; diff --git a/docs/manual/programs.xml b/docs/manual/programs.xml index b7a692f..83959f6 100644 --- a/docs/manual/programs.xml +++ b/docs/manual/programs.xml @@ -35,10 +35,10 @@ gst-launch filesrc location=redpill.vob ! mpegdemux name=demux \ - You can also use the the parser in you own + You can also use the parser in you own code. GStreamer provides a function - gst_parse_launch () that you can use to construt a pipeline. - The following programs lets you create an mp3 pipeline using the + gst_parse_launch () that you can use to construct a pipeline. + The following program lets you create an MP3 pipeline using the gst_parse_launch () function: @@ -95,8 +95,8 @@ main (int argc, char *argv[]) A bare identifier (a string beginning with a letter and containing only letters, numbers, dashes, underscores, percent signs, or colons) - will create an element from a given elementfactory. In this example, - an instance of the "mad" mp3 decoding plugin will be created. + will create an element from a given element factory. In this example, + an instance of the "mad" MP3 decoding plugin will be created. diff --git a/docs/manual/queues.xml b/docs/manual/queues.xml index c87fdde..8179742 100644 --- a/docs/manual/queues.xml +++ b/docs/manual/queues.xml @@ -8,7 +8,7 @@ A buffer that is sinked to a Queue will not automatically be pushed to the next connected element but will be buffered. It will be pushed to the next - element as soon as a gst_pad_pull () is called on the queues srcpad. + element as soon as a gst_pad_pull () is called on the queue's source pad. Queues are mostly used in conjunction with a GstThread to @@ -41,7 +41,7 @@ - The following mp3 player shows you how to create the above pipeline + The following MP3 player shows you how to create the above pipeline using a thread and a queue. diff --git a/docs/manual/schedulers.xml b/docs/manual/schedulers.xml index 8323aab..c676d92 100644 --- a/docs/manual/schedulers.xml +++ b/docs/manual/schedulers.xml @@ -1,8 +1,8 @@ Understanding schedulers - The scheduler is responsible for managing the plugins at runtime. The - main responsabilities are: + The scheduler is responsible for managing the plugins at runtime. Its + main responsibilities are: @@ -28,14 +28,14 @@ - The scheduler is a plugable component, this means that alternative + The scheduler is a plugable component; this means that alternative schedulers can be written and plugged into GStreamer. The default scheduler uses cothreads to schedule the plugins in a pipeline. Cothreads are fast and lightweight user-space threads. There is usually no need to interact with the scheduler directly, however - it some cases it is feasable to set a specific clock or force a specific + in some cases it is feasible to set a specific clock or force a specific plugin as the entry point in the pipeline. diff --git a/docs/manual/states.xml b/docs/manual/states.xml index e158455..3a2740e 100644 --- a/docs/manual/states.xml +++ b/docs/manual/states.xml @@ -1,8 +1,8 @@ Element states - One you have created a pipeline packed with elements, nothing will - happen yet. This is where the different states come into play. + Once you have created a pipeline packed with elements, nothing will happen + right away. This is where the different states come into play. @@ -37,7 +37,7 @@ All elements start with the NULL state. The elements will go throught the following state changes: NULL -> READY -> PAUSED -> - PLAYING. Remember when going from PLAYING to READY GStreamer will + PLAYING. Remember when going from PLAYING to READY, GStreamer will internally go throught the intermediate states. @@ -113,7 +113,7 @@ You can also go from the NULL to PLAYING state directly without - going through the READY state. this is a shortcut, the framework + going through the READY state. This is a shortcut; the framework will internally go through the READY and the PAUSED state for you. @@ -140,7 +140,7 @@ The PAUSED state is available for temporarily freezing the pipeline. Elements will typically not free their resources in the PAUSED state. - Use the NULL state if you want to stop the data flow permanantly. + Use the NULL state if you want to stop the data flow permanently. diff --git a/docs/manual/threads.xml b/docs/manual/threads.xml index 2f0ebaa..f4d5a10 100644 --- a/docs/manual/threads.xml +++ b/docs/manual/threads.xml @@ -33,7 +33,7 @@ The above program will create a thread with two elements in it. As soon as it is set to the PLAYING state, the thread will start to iterate - itself. You never need to manually iterate a thread. + itself. You never need to explicitly iterate a thread. @@ -47,7 +47,7 @@ between the threads, in a thread-safe fashion. This element is the queue, described more fully in . It doesn't matter if the queue is placed in the containing bin or in the thread - itself, but it needs to be present on one side of the other to enable + itself, but it needs to be present on one side or the other to enable inter-thread communication. diff --git a/docs/manual/typedetection.xml b/docs/manual/typedetection.xml index 36af41d..642a558 100644 --- a/docs/manual/typedetection.xml +++ b/docs/manual/typedetection.xml @@ -1,9 +1,9 @@ Typedetection - Sometimes the capabilities of a pad are not specificied. The filesrc, - for example, does not know what type of file it is reading. Before you - can attach an element to the pad of the filesrc, you need to determine + Sometimes the capabilities of a pad are not specificied. The filesrc + element, for example, does not know what type of file it is reading. Before + you can attach an element to the pad of the filesrc, you need to determine the media type in order to be able to choose a compatible element. @@ -104,14 +104,14 @@ main(int argc, char *argv[]) We create a very simple pipeline with only a filesrc and the typefind element in it. The sinkpad of the typefind element has been connected - to the src pad of the filesrc. + to the source pad of the filesrc. We attached a signal 'have_type' to the typefind element which will be called when the type of the media stream as been detected. - the typefind function will loop over all the registered types and will + The typefind function will loop over all the registered types and will execute each of the typefind functions. As soon as a function returns a GstCaps pointer, the type_found function will be called: @@ -138,7 +138,7 @@ type_found (GstElement *typefind, GstCaps* caps) XML representation of the caps structure to stdout. - A more usefull option would be to use the registry to look up an element + A more useful option would be to use the registry to look up an element that can handle this particular caps structure, or we can also use the autoplugger to connect this caps structure to, for example, a videosink. diff --git a/docs/manual/xml.xml b/docs/manual/xml.xml index 042742f..145ba44 100644 --- a/docs/manual/xml.xml +++ b/docs/manual/xml.xml @@ -18,9 +18,9 @@ We create a simple pipeline and write it to stdout with - gst_xml_write_file (). The following code constructs an mp3 player + gst_xml_write_file (). The following code constructs an MP3 player pipeline with two threads and then writes out the XML both to stdout - and to a file. Use this program with one argument: the mp3 file on disk. + and to a file. Use this program with one argument: the MP3 file on disk. @@ -170,7 +170,7 @@ main(int argc, char *argv[]) In addition to loading a file, you can also load a from a xmlDocPtr and an in memory buffer using gst_xml_parse_doc and gst_xml_parse_memory - respectivily. both of these methods return a gboolean indicating + respectively. Both of these methods return a gboolean indicating success or failure of the requested action. @@ -180,7 +180,7 @@ main(int argc, char *argv[]) It is possible to add custom XML tags to the core XML created with gst_xml_write. This feature can be used by an application to add more - information to the save plugins. the editor will for example insert + information to the save plugins. The editor will for example insert the position of the elements on the screen using the custom XML tags. @@ -258,7 +258,7 @@ object_saved (GstObject *object, xmlNodePtr parent, gpointer data) Whenever a new object has been loaded, the xml_loaded function will - be called. this function looks like: + be called. This function looks like: static void -- 2.7.4