mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
docs/pwg/building-testapp.xml: Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed if people try to bui...
Original commit message from CVS: Patch by: Steve Fink <sphink gmail com> * docs/pwg/building-testapp.xml: Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed if people try to build or install the example from the plugin template against a GStreamer from package using the configure defaults.
This commit is contained in:
parent
3dc3b453db
commit
896e1a3d5d
2 changed files with 20 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2007-07-26 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
Patch by: Steve Fink <sphink gmail com>
|
||||||
|
|
||||||
|
* docs/pwg/building-testapp.xml:
|
||||||
|
Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed
|
||||||
|
if people try to build or install the example from the plugin
|
||||||
|
template against a GStreamer from package using the configure
|
||||||
|
defaults.
|
||||||
|
|
||||||
2007-07-25 Tim-Philipp Müller <tim at centricular dot net>
|
2007-07-25 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
Patch by: Steve Fink <sphink gmail com>
|
Patch by: Steve Fink <sphink gmail com>
|
||||||
|
|
|
@ -5,7 +5,16 @@
|
||||||
<para>
|
<para>
|
||||||
Often, you will want to test your newly written plugin in an as small
|
Often, you will want to test your newly written plugin in an as small
|
||||||
setting as possible. Usually, <filename>gst-launch</filename> is a
|
setting as possible. Usually, <filename>gst-launch</filename> is a
|
||||||
good first step at testing a plugin. However, you will often need more
|
good first step at testing a plugin. If you have not installed your
|
||||||
|
plugin in a directory that GStreamer searches, then you will need to
|
||||||
|
set the plugin path. Either set GST_PLUGIN_PATH to the directory
|
||||||
|
containing your plugin, or use the command-line option --gst-plugin-path.
|
||||||
|
If you based your plugin off of the gst-plugin template, then this
|
||||||
|
will look something like
|
||||||
|
<command>
|
||||||
|
gst-launch --gst-plugin-path=$HOME/gst-template/gst-plugin/src/.libs TESTPIPELINE
|
||||||
|
</command>
|
||||||
|
However, you will often need more
|
||||||
testing features than gst-launch can provide, such as seeking, events,
|
testing features than gst-launch can provide, such as seeking, events,
|
||||||
interactivity and more. Writing your own small testing program is the
|
interactivity and more. Writing your own small testing program is the
|
||||||
easiest way to accomplish this. This section explains - in a few words
|
easiest way to accomplish this. This section explains - in a few words
|
||||||
|
|
Loading…
Reference in a new issue