Does anyone have any ideas on this?

On 6 July 2011 14:19, Chris Debenham <[email protected]> wrote:

> I am running clutter 1.6.14 (on ubuntu natty) and have hit an issue.
> My application (lyricue) is used to display song lyrics and can play a
> video as the background.
> When the video hits the end it should loop back and start from the
> beginning again.
> I do this currently by hooking into the 'eos' signal and setting the
> video to the start and re-starting the play.
> Relevant code bits are:
>
> g_signal_connect (background, "eos", G_CALLBACK(loop_video), NULL);
>
> // Loop video
> void
> loop_video (ClutterActor * video)
> {
>        clutter_media_set_progress (CLUTTER_MEDIA (video), 0);
>        clutter_media_set_playing (CLUTTER_MEDIA (video), 1);
> }
>
>
> The problem is that since upgrading to natty there what looks to be a
> single black frame at the end of every video (even ones that worked
> perfectly before)
> My thought is that ClutterMedia is going to black when it hits end of
> stream instead of retaining the last frame.
> Does this sound correct?
> Is there anything I can do about this?
>
> Thanks,
>   Chris
>
_______________________________________________
clutter-app-devel-list mailing list
[email protected]
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to