diff --git a/docs/manual/advanced-autoplugging.xml b/docs/manual/advanced-autoplugging.xml index c796c2c944..5703a7922a 100644 --- a/docs/manual/advanced-autoplugging.xml +++ b/docs/manual/advanced-autoplugging.xml @@ -85,7 +85,7 @@ concept of typefinding for this. Typefinding is a normal part of a pipeline, it will read data for as long as the type of a stream is unknown. During this period, it will provide data to all plugins - that implement a typefinder. when one of the typefinders recognizes + that implement a typefinder. When one of the typefinders recognizes the stream, the typefind element will emit a signal and act as a passthrough module from that point on. If no type was found, it will emit an error and further media processing will stop. diff --git a/docs/manual/advanced-dparams.xml b/docs/manual/advanced-dparams.xml index b89ccaaf89..4e5485a8db 100644 --- a/docs/manual/advanced-dparams.xml +++ b/docs/manual/advanced-dparams.xml @@ -73,7 +73,7 @@ has timestamped control-values assigned one can change the GObject property through g_object_set(). This is highly useful when binding the GObject properties to GUI widgets. - When the user adjusts the value with the widget, one can set the GOBject + When the user adjusts the value with the widget, one can set the GObject property and this remains active until the next timestamped value overrides. This also works with smoothed parameters. diff --git a/docs/manual/advanced-interfaces.xml b/docs/manual/advanced-interfaces.xml index a17ea5e4d9..1e26a9d6d0 100644 --- a/docs/manual/advanced-interfaces.xml +++ b/docs/manual/advanced-interfaces.xml @@ -148,7 +148,7 @@ This interface is currently implemented by many elements, including - the ALSA, OSS, XVImageSink, Video4linux and Video4linux2 elements. + the ALSA, OSS, XVideo, Video4linux and Video4linux2 elements. diff --git a/docs/manual/advanced-position.xml b/docs/manual/advanced-position.xml index 01c57a846e..59572315c8 100644 --- a/docs/manual/advanced-position.xml +++ b/docs/manual/advanced-position.xml @@ -18,7 +18,7 @@ Querying: getting the position or length of a stream - Querying is defined as requesting a specific stream-property related + Querying is defined as requesting a specific stream property related to progress tracking. This includes getting the length of a stream (if available) or getting the current position. Those stream properties can be retrieved in various formats such as time, audio samples, video diff --git a/docs/manual/appendix-checklist.xml b/docs/manual/appendix-checklist.xml index 469f7bb4e5..af9a23912f 100644 --- a/docs/manual/appendix-checklist.xml +++ b/docs/manual/appendix-checklist.xml @@ -105,11 +105,11 @@ - will disable color debugging + will disable color debugging. You can also set the GST_DEBUG_NO_COLOR environment variable to 1 if you want to disable colored debug output permanently. Note that if you are disabling color purely to avoid messing up your pager - output, trying using less -R. + output, try using less -R. diff --git a/docs/manual/basics-helloworld.xml b/docs/manual/basics-helloworld.xml index 7b0e291728..79b366c42f 100644 --- a/docs/manual/basics-helloworld.xml +++ b/docs/manual/basics-helloworld.xml @@ -225,11 +225,20 @@ main (int argc, $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;) helloworld.c -o helloworld. &GStreamer; makes use of pkg-config to get compiler and linker flags - needed to compile this application. If you're running a - non-standard installation, make sure the - PKG_CONFIG_PATH environment variable is - set to the correct location ($libdir/pkgconfig). - application against the uninstalled location. + needed to compile this application. + + + If you're running a non-standard installation (ie. you've installed + GStreamer from source yourself instead of using pre-built packages), + make sure the PKG_CONFIG_PATH environment variable + is set to the correct location ($libdir/pkgconfig). + + + In the unlikely case that you are using an uninstalled GStreamer + setup (ie. gst-uninstalled), you will need to use libtool to build the + hello world program, like this: libtool --mode=link gcc -Wall + $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;) + helloworld.c -o helloworld. You can run this example application with ./helloworld