Hi,
I am working on a kde/qt application using gstreamer. Whenever I set any property using g_object_set, a warning such as following is shown (though the property is set properly): - (<unknown>:7095): GLib-GObject-WARNING **: IA__g_object_get_valist: object class `GstPlayBin' has no property named `\x89\xc2\u000f\xb6F\u0014\x83\xe2\u0001\x83\xe0\xfc ЈF\u0014\x8bE\u0008\x89p\u0004\xf0\xff\u0006\u000f\x95\xc0\x8bE\xf0\xf0\xff\u0008\u000f\x95\u0084\xd2u\u000b\x8bE\xf0\x89\u0004$\xe8\xe4\u000f\xff\xff\x83\xc4\u001c[^_]Ít&' Do you have any idea? Regards, -- Yogesh M http://snakeeyes.wordpress.com/ ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
On Wed, 2009-04-22 at 22:16 +0530, Yogesh Marwaha wrote:
> Hi, > > I am working on a kde/qt application using gstreamer. Whenever I set > any property using g_object_set, a warning such as following is shown > (though the property is set properly): - > > > (<unknown>:7095): GLib-GObject-WARNING **: IA__g_object_get_valist: > object class `GstPlayBin' has no property named > `\x89\xc2\u000f\xb6F\u0014\x83\xe2\u0001\x83\xe0\xfc > ЈF\u0014\x8bE\u0008\x89p\u0004\xf0\xff\u0006\u000f\x95\xc0\x8bE\xf0\xf0\xff\u0008\u000f\x95\u0084\xd2u\u000b\x8bE\xf0\x89\u0004$\xe8\xe4\u000f\xff\xff\x83\xc4\u001c[^_]Ít&' > > > Do you have any idea? You forgot to end the call by a NULL. Install devhelp, and read the docs! ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
In reply to this post by Yogesh Marwaha
On Wed, 2009-04-22 at 22:16 +0530, Yogesh Marwaha wrote:
> I am working on a kde/qt application using gstreamer. Whenever I set > any property using g_object_set, a warning such as following is shown > (though the property is set properly): - > > (<unknown>:7095): GLib-GObject-WARNING **: IA__g_object_get_valist: > object class `GstPlayBin' has no property named > `\x89\xc2\u000f\xb6F\u0014\x83\xe2\u0001\x83\xe0\xfc > ЈF\u0014\x8bE\u0008\x89p\u0004\xf0\xff\u0006\u000f\x95\xc0\x8bE\xf0\xf0\xff\u0008\u000f\x95\u0084\xd2u\u000b\x8bE\xf0\x89\u0004$\xe8\xe4\u000f\xff\xff\x83\xc4\u001c[^_]Ít&' > Do you have any idea? Maybe you could post the exact line of code that causes this? If I had to guess, I'd say you're missing the NULL terminator (g_object_set is a vararg function). Cheers -Tim ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
In reply to this post by Bastien Nocera-2
Thanks, I was already doing that (add NULL), just that I forgot to add
it everywhere in the code (Had started coding without fully reading the docs). Regards, Bastien Nocera <[hidden email]>: > On Wed, 2009-04-22 at 22:16 +0530, Yogesh Marwaha wrote: >> Hi, >> >> I am working on a kde/qt application using gstreamer. Whenever I set >> any property using g_object_set, a warning such as following is shown >> (though the property is set properly): - >> >> >> (<unknown>:7095): GLib-GObject-WARNING **: IA__g_object_get_valist: >> object class `GstPlayBin' has no property named >> `\x89\xc2\u000f\xb6F\u0014\x83\xe2\u0001\x83\xe0\xfc >> ЈF\u0014\x8bE\u0008\x89p\u0004\xf0\xff\u0006\u000f\x95\xc0\x8bE\xf0\xf0\xff\u0008\u000f\x95\u0084\xd2u\u000b\x8bE\xf0\x89\u0004$\xe8\xe4\u000f\xff\xff\x83\xc4\u001c[^_]Ít&' >> >> >> Do you have any idea? > > You forgot to end the call by a NULL. Install devhelp, and read the > docs! > > > ------------------------------------------------------------------------------ > Stay on top of everything new and different, both inside and > around Java (TM) technology - register by April 22, and save > $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. > 300 plus technical and hands-on sessions. Register today. > Use priority code J9JMT32. http://p.sf.net/sfu/p > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > -- Yogesh M http://snakeeyes.wordpress.com/ ------------------------------------------------------------------------------ Stay on top of everything new and different, both inside and around Java (TM) technology - register by April 22, and save $200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco. 300 plus technical and hands-on sessions. Register today. Use priority code J9JMT32. http://p.sf.net/sfu/p _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |