2002-10-19 09:15:52 +00:00
|
|
|
<sect1 id="chapter-troubleshooting">
|
|
|
|
<title id="title-troubleshooting">Troubleshooting GStreamer</title>
|
2006-03-16 15:33:55 +00:00
|
|
|
<qandaset defaultlabel="qanda">
|
2002-10-19 09:15:52 +00:00
|
|
|
|
2002-11-29 13:56:23 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question id="troubleshooting-missing-plug-in">
|
|
|
|
<para>
|
|
|
|
Some application is telling me that I am missing a plug-in. What do I do ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
Well, start by checking if you really are missing the plug-in.
|
|
|
|
<programlisting>
|
|
|
|
gst-inspect (plug-in)
|
|
|
|
</programlisting>
|
|
|
|
and replace (plug-in) with the plug-in you think is missing.
|
|
|
|
If this doesn't return any result, then you either don't have it or your
|
|
|
|
registry cannot find it.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If you're not sure either way, then chances are good that you don't have
|
|
|
|
it. You should get the plug-in and run gst-register to register it.
|
|
|
|
How to get the plug-in depends on your distribution.
|
|
|
|
<itemizedlist>
|
2002-12-12 16:51:45 +00:00
|
|
|
<listitem><para>if you run GStreamer using packages for your distribution, you
|
2002-11-29 13:56:23 +00:00
|
|
|
should check what packages are available for your distribution and see
|
|
|
|
if any of the available packages contains the plug-in.
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>if you run GStreamer from a source install, there's a good chance
|
2002-11-29 13:56:23 +00:00
|
|
|
the plug-in didn't get built because you are missing an external library.
|
|
|
|
When you ran configure, you should have gotten output of what plug-ins are
|
|
|
|
going to be built. You can re-run configure to see if it's there.
|
|
|
|
If it isn't, there is a good reason why it is not getting built.
|
|
|
|
The most likely is that you're missing the library you need for it.
|
|
|
|
Check the README file in gst-plugins to see what library you need.
|
|
|
|
Make sure to remember to re-run configure after installing the supporting
|
|
|
|
library !
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2009-02-14 13:35:48 +00:00
|
|
|
if you run GStreamer from git, the same logic applies as for a source install.
|
2002-11-29 13:56:23 +00:00
|
|
|
Go over the reasons why the plug-in didn't get configured for build.
|
|
|
|
Check output of config.log for a clue as to why it doesn't get built if
|
|
|
|
you're sure you have the library needed installed in a sane place.
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
2002-11-29 13:56:23 +00:00
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
|
|
|
<qandaentry>
|
|
|
|
<question id="troubleshooting-old-plug-ins">
|
|
|
|
<para>
|
|
|
|
I get an error that says something like
|
|
|
|
|
|
|
|
(process:26626): GLib-GObject-WARNING **: specified instance size for type
|
|
|
|
`DVDReadSrc' is smaller than the parent type's `GstElement' instance size
|
|
|
|
What's wrong ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
2004-04-18 18:37:15 +00:00
|
|
|
<para>
|
2009-02-14 13:35:48 +00:00
|
|
|
If you run GStreamer from git uninstalled, it means that something changed in
|
2004-04-18 18:37:15 +00:00
|
|
|
the core that requires a recompilation in the plugins. Recompile the
|
|
|
|
plugins by doing "make clean && make".
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
If you run GStreamer installed, it probably means that you run the plugins
|
|
|
|
against a different (incompatible) version than they were compiled against,
|
|
|
|
which ususally means that you run multiple installations of GStreamer.
|
|
|
|
Remove the old ones and - if needed - recompile again to ensure that it is
|
|
|
|
using the right version.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Note that we strongly recommend using Debian or RPM packages, since you will
|
|
|
|
not get such issues if you use provided packages.
|
|
|
|
</para>
|
2002-11-29 13:56:23 +00:00
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-10-24 10:48:21 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question id="troubleshooting-segfault">
|
|
|
|
<para>
|
|
|
|
The GStreamer application I used stops with a segmentation fault. What can
|
|
|
|
I do ?
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
|
|
|
There are two things you can do. If you compiled GStreamer with specific
|
|
|
|
optimization compilation flags, you should try recompiling GStreamer,
|
|
|
|
the application and the plug-ins without any optimization flags. This allows
|
|
|
|
you to verify if the problem is due to optimization or due to bad code.
|
|
|
|
Second, it will also allow you to provide a reasonable backtrace in case
|
|
|
|
the segmentation fault still occurs.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The second thing you can do is look at the backtrace to get an idea of where
|
|
|
|
things are going wrong, or give us an idea of what is going wrong.
|
|
|
|
To provide a backtrace, you should
|
|
|
|
<orderedlist>
|
2002-12-12 16:51:45 +00:00
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
run the application in gdb by starting it with
|
|
|
|
<programlisting>
|
|
|
|
gdb (gst-application)
|
|
|
|
</programlisting>
|
|
|
|
(If the application is in a source tree instead of installed on the system,
|
|
|
|
you might want to put "libtool" before "gdb")
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
Pass on the command line arguments to the application by typing
|
|
|
|
<programlisting>
|
|
|
|
set args (the arguments to the application)
|
|
|
|
</programlisting>
|
|
|
|
at the (gdb) prompt
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
Type "run" at the (gdb) prompt and wait for the application to
|
|
|
|
segfault. The application will run a lot slower, however.
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
After the segfault, type "bt" to get a backtrace. This is a stack of
|
|
|
|
function calls detailing the path from main () to where the code is
|
|
|
|
currently at.
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
If the application you're trying to debug contains threads, it is also
|
|
|
|
useful to do
|
|
|
|
<programlisting>
|
|
|
|
info threads
|
|
|
|
</programlisting>
|
|
|
|
and get backtraces of all of the threads involved, by switching to
|
|
|
|
a different thread using "thread (number)" and then again requesting
|
|
|
|
a backtrace using "bt".
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
|
|
|
<listitem><para>
|
2002-10-24 10:48:21 +00:00
|
|
|
If you can't or don't want to work out the problem yourself, a copy and paste
|
|
|
|
of all this information should be included in your
|
|
|
|
<link linkend="using-bugs-where">bug report</link>.
|
2002-12-12 16:51:45 +00:00
|
|
|
</para></listitem>
|
2002-10-24 10:48:21 +00:00
|
|
|
</orderedlist>
|
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2006-03-16 15:33:55 +00:00
|
|
|
<qandaentry>
|
|
|
|
<question id="troubleshooting-gst-register">
|
|
|
|
<para>
|
|
|
|
On my system there is no gst-register command.
|
|
|
|
</para>
|
|
|
|
</question>
|
|
|
|
|
|
|
|
<answer>
|
|
|
|
<para>
|
2006-05-19 15:35:41 +00:00
|
|
|
GStreamer version 0.10 does not need this anymore. The registry will
|
|
|
|
be rebuilt automatically. If you suspect the registry is broken, just delete the
|
2006-03-16 15:33:55 +00:00
|
|
|
<filename>registry.*.xml</filename> files under <filename>$HOME/.gstreamer-0.X/</filename>
|
|
|
|
and run
|
|
|
|
<programlisting>
|
|
|
|
gst-inspect
|
|
|
|
</programlisting>
|
2006-05-19 15:35:41 +00:00
|
|
|
to rebuild the registry.
|
2006-03-16 15:33:55 +00:00
|
|
|
</para>
|
|
|
|
</answer>
|
|
|
|
</qandaentry>
|
|
|
|
|
2002-10-19 09:15:52 +00:00
|
|
|
</qandaset>
|
|
|
|
</sect1>
|