On Tue, 2014-08-05 at 14:49 +0530, shivaraj karahari wrote: Hi, You should consider upgrading to 1.x. 0.10 is no longer maintained. > I am using gstreamer-0.10. It fails throwing the following error when > I try to decode a video. > (<unknown>:1632): GLib-GObject-WARNING **: IA__g_object_set_valist: > object class `GstQueue' has no property named ``\xaf\u000e' This probably means that there is a g_object_set() call somewhere where one of the arguments is not of the right type. Some of the properties are 64-bit integers, and if you set one of those you need to make sure that you're passing a 64-bit integer value to the function and not a normal integer value. The compiler doesn't know what to do, so if in doubt add a cast to the right integer type, e.g.: g_object_set (queue, "max-size-time", (guint64) 1000000000, NULL); It could also mean you forgot the NULL terminator at the end of g_object_set(). Run your code in gdb with G_DEBUG=fatal_warnings to find out where the warning comes from. > GThread-ERROR **: file gthread-posix.c: line 348 > (g_thread_create_posix_impl): error 'Invalid argument' during > 'pthread_attr_setschedparam (&attr, &sched)' > aborting... Likewise, run in a debugger to see what line of code triggers this. Cheers -Tim > > > Please help in this regard. However gstreamer form command line works > fine. But it does not work properly for my airplay application. It > throws the above error. > > > Regards, > > Shivaraj > > _______________________________________________ > gstreamer-embedded mailing list > gstreamer-embedded@xxxxxxxxxxxxxxxxxxxxx > http://lists.freedesktop.org/mailman/listinfo/gstreamer-embedded -- Tim Müller, Centricular Ltd - http://www.centricular.com _______________________________________________ gstreamer-embedded mailing list gstreamer-embedded@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/gstreamer-embedded