[clutter] clutter-gst video pausing when animating

2009-06-25 Thread Uday Verma
Hello everyone, I am using version 0.8.8 of clutter and 0.8.0 of clutter-gst. I have a video feed coming in from v4l2src which ends up in a cluttergstvideosink. Everything seems to be working great, only that when I animate my scene around, e.g. animate a text label to come into the view, the

Re: [clutter] clutter-gst video pausing when animating

2009-06-26 Thread Uday Verma
Sounds good. Thanks! On Fri, Jun 26, 2009 at 5:01 AM, Damien Lespiau damien.lesp...@gmail.comwrote: 2009/6/25 Uday Verma uday.ka...@gmail.com: Hello everyone, I am using version 0.8.8 of clutter and 0.8.0 of clutter-gst. I have a video feed coming in from v4l2src which ends up

[clutter] clutter-gst for 0.9.x and 1.x

2009-07-17 Thread Uday Verma
Hi, I was wondering about the plans for clutter-gst. The present clutter-gst has dependencies on clutter-0.8 so its not directly re-usable in 0.9. If no solid plans exist, may be I could work to submit a few patches and port clutter-gst to 0.9.x and 1.x. Thanks, -- Uday http://soundc.de/

Re: [clutter] clutter-gst for 0.9.x and 1.x

2009-07-18 Thread Uday Verma
Got it! Thanks! :) On Sat, Jul 18, 2009 at 5:53 AM, Bastian Winkler b...@netbuz.org wrote: Hi, just use the clutter-gst master branch :) :wq buz On Fri, Jul 17, 2009 at 07:59:29PM -0500, Uday Verma wrote: Hi, I was wondering about the plans for clutter-gst. The present clutter-gst

[clutter] Segfault in clutter_gst_video_sink_new

2009-07-26 Thread Uday Verma
Hi, I am trying to create a GstElement using clutter_gst_video_sink_new in a thread other than the main thread and its segfaulting with: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7f6e767fc950 (LWP 26454)] 0x7f6e8b6bf889 in glGetString () from

Re: [clutter] Re: [Moblin Dev] [ANNOUNCE] Clutter 1.0.0 (core) - stable release

2009-07-29 Thread Uday Verma
YAY! congrats! :) On Wed, Jul 29, 2009 at 10:18 AM, Emmanuele Bassi eba...@linux.intel.comwrote: On Wed, 2009-07-29 at 17:06 +0200, Koen Kooi wrote: On 29-07-09 11:44, Emmanuele Bassi wrote: hi everyone; Clutter 1.0.0 is now available for download at: Clutter currently requires:

Re: [clutter] releases for Clutter 1.0 and integration libraries

2009-07-29 Thread Uday Verma
So any plans/ideas on when 0.10 for clutter-gst would be available for download? My project depends on both clutter and clutter-gst, so I can't really move to clutter-1.0 till I have clutter-gst-0.10 available. Hope its coming out real soon :) Thanks, On Wed, Jul 29, 2009 at 5:30 AM, Emmanuele

Re: [clutter] releases for Clutter 1.0 and integration libraries

2009-07-29 Thread Uday Verma
Yay!! :) On Wed, Jul 29, 2009 at 11:45 AM, Emmanuele Bassi eba...@linux.intel.comwrote: On Wed, 2009-07-29 at 11:39 -0500, Uday Verma wrote: So any plans/ideas on when 0.10 for clutter-gst would be available for download? My project depends on both clutter and clutter-gst, so I can't

Re: [clutter] clutter_actor_animate ()

2009-08-13 Thread Uday Verma
If you use variables to pass these values to clutter_actor_animate and if any of these variables is of incorrect type, the function just segfaults. gint angle = 360; // instead of a double clutter_actor_animate (myactor, CLUTTER_EASE_IN, 100, rotation-angle-z, x, NULL); // will segfault -- On

Re: [clutter] Can't use ClutterAnimation one after one?

2009-12-29 Thread Uday Verma
I think you should probably invest some time into getting Scores and Timelines working for you: http://clutter-project.org/docs/clutter/stable/ClutterScore.html http://clutter-project.org/docs/clutter/stable/ClutterScore.htmlThey are there specifically for this purpose and will make things much

[clutter] OSX Backend bug #1944

2010-01-11 Thread Uday Verma
Hello all, I recently submitted this bug: http://bugzilla.openedhand.com/show_bug.cgi?id=1944 I can probably help fix this if someone could direct me to a few possible causes. Looking at the code I noticed that osx backend overrides the polling function. I tried to disable it to see if that

[clutter] Re: OSX Backend bug #1944

2010-01-12 Thread Uday Verma
Sounds good. I'll take a look. On Tuesday, January 12, 2010, Tommi Komulainen tommi.komulai...@iki.fi wrote: On Mon, Jan 11, 2010 at 11:40 PM, Uday Verma uday.ka...@gmail.com wrote: Hello all, I recently submitted this bug: http://bugzilla.openedhand.com/show_bug.cgi?id=1944 I can probably

[clutter] Segfault with --enable-debug=yes/--clutter-debug=all

2010-01-30 Thread Uday Verma
Hello all, I just complied the 1.1.6 sources with --enable-debug=yes. I need to see some verbose debug to help diagnose some _remove_actor errors. Whenever I run my program without any --clutter-debug flags, the program runs fine. But when I use --clutter-debug=all the program crashes with the

[clutter] Re: Segfault with --enable-debug=yes/--clutter-debug=all

2010-02-02 Thread Uday Verma
Ok, Got it fixed. Sorry about this, It was something wrong with how I was handling argc, argv. On Sat, Jan 30, 2010 at 1:05 PM, Uday Verma uday.ka...@gmail.com wrote: Hello all, I just complied the 1.1.6 sources with --enable-debug=yes. I need to see some verbose debug to help diagnose

Re: [clutter] Texture coordinates for ClutterTexture

2010-02-05 Thread Uday Verma
Hi Robert, Thanks for the reply. Your suggestion helped me diagnose the problem. The clutter functions are working fine. As far as I can tell, the problem is with my data source. I wrote a test program (attached) like you suggested and that cleared things up. Thanks a lot, Uday On Fri, Feb

[clutter] Re: Confusing child actors behavior

2010-03-23 Thread Uday Verma
Well, ok, seems like a reference counting problem. I can get the timeline to run now. On Tue, Mar 23, 2010 at 4:29 PM, Uday Verma uday.ka...@gmail.com wrote: Ok, to tackle this problem I wrote a new behaviour class to change the allocation from one actorbox to another. If it works, I think

Re: [clutter] VA-API support to clutter-gst

2010-05-13 Thread Uday Verma
Wow, awesome!! Can't wait to try it out :) On Thu, May 13, 2010 at 10:20 AM, Gwenole Beauchesne gbeauche...@splitted-desktop.com wrote: Hi, I have posted some patches to add VA-API support to clutter-gst: http://bugzilla.openedhand.com/show_bug.cgi?id=2119 You need gstreamer-vaapi =