diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-04-24 12:30:07 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2013-04-24 12:30:07 +0100 |
commit | 1905219235546446255d6f37a0cf539f06546ad6 (patch) | |
tree | 595354729d6505301d23cf535aaccaf8660cc07b /docs | |
parent | f27a3e12f6d35695ebbf2edc5aa4937c2e7c3843 (diff) |
porting-to-1.0.txt: add troubleshooting section
Add note about "cannot register existing type `GstObject'" warning.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/random/porting-to-1.0.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/random/porting-to-1.0.txt b/docs/random/porting-to-1.0.txt index 08f2f9e0e..1bf4e26cc 100644 --- a/docs/random/porting-to-1.0.txt +++ b/docs/random/porting-to-1.0.txt @@ -738,3 +738,19 @@ CHANGES or even playbin uri=file:///path/to/foo.flac audio-sink=pulsesink + + +============================================================================= + Troubleshooting +============================================================================= + + * GLib-GObject-WARNING **: cannot register existing type `GstObject' + + If you get this warning, this usually means your plugin or application + is linked against both libgstreamer-1.0.so and libgstreamer-0.10.so. + Make sure you have changed all -0.10 references in your configure.ac, + pkg-config invocations or Makefile.am/Makefile to -1.0. + + While both versions can co-exist without problems on the same system, it + is not possible to use both versions at the same time in the same + application. |