From: Duilio J. P. <dp...@fc...> - 2004-09-02 03:12:15
|
Ok, now libvisual works well on my system with the last CVS update. However, some plugins, like infinite, shows strange colors, it looks like it initializes right, but then the palette goes bits down and colors are screwed. Any idea? I will check this tomorrow. Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-02 06:14:53
|
That is very strange, I have nothing like this locally, can you make a screenshot so I've got an idea what is happening ? Cheers and thanks, Dennis On Thu, 2004-09-02 at 00:18 -0300, Duilio Javier Protti wrote: > Ok, now libvisual works well on my system with > the last CVS update. However, some plugins, like > infinite, shows strange colors, it looks like it > initializes right, but then the palette goes bits > down and colors are screwed. > > Any idea? I will check this tomorrow. > > Bye, > Duilio. > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > Libvisual-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libvisual-devel |
From: Duilio J. P. <dp...@fc...> - 2004-09-02 21:46:13
|
Ok, the problem with some plugins was due to a lack of sync with libvisual-xmms module on CVS (which include updates corresponding to last libvisual API changes). Now I can test my work, so let's go work. Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-03 11:40:34
|
Woohoo, I'm so happy to hear that, I already started to get nightmares about odd distro specific race condition somewhere nested inside the code! :) BTW: What are your plans regarding libvisual-xmms (so we can add that to the roadmap as well) Cheers, Dennis On Thu, 2004-09-02 at 18:52 -0300, Duilio Javier Protti wrote: > Ok, the problem with some plugins was due to a lack > of sync with libvisual-xmms module on CVS (which include > updates corresponding to last libvisual API changes). > > Now I can test my work, so let's go work. > > Bye, > Duilio. |
From: salsaman <sal...@xs...> - 2004-09-03 12:11:49
|
Hmm, there seems to be no way of checking whether the user has any plugins installed or not. With no plugins: VisList *vislist=visual_actor_get_list(); if (!vislist->count) printf("no plugins"); crashes. also: char *name=visual_actor_get_next_by_name (NULL); if (name==NULL) printf("no plugins"); gives an assertion: libvisual CRITICAL: (null): visual_plugin_get_next_by_name [(lv_plugin.c,412)]: assertion `list != NULL' failed I suggest you fix this. I can't have apps crashing just because there are no libvisual plugins installed. Salsaman. |
From: Dennis S. <sy...@yo...> - 2004-09-03 12:28:38
|
Have you done visual_init (&argc, &argv), lists always get created in visual_init :) You can pass NULL, NULL at visual_init. if visual_init returns < 0 than there is a serious error. Try this first, if there is still a problem report back :) Cheers, Dennis On Fri, 2004-09-03 at 14:26 +0100, salsaman wrote: > Hmm, > there seems to be no way of checking whether the user has any plugins > installed or not. With no plugins: > > VisList *vislist=visual_actor_get_list(); > if (!vislist->count) printf("no plugins"); > > crashes. > > also: > > > char *name=visual_actor_get_next_by_name (NULL); > if (name==NULL) printf("no plugins"); > > > gives an assertion: > > libvisual CRITICAL: (null): visual_plugin_get_next_by_name > [(lv_plugin.c,412)]: assertion `list != NULL' failed > > > I suggest you fix this. I can't have apps crashing just because there > are no libvisual plugins installed. > > Salsaman. > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > Libvisual-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libvisual-devel |
From: salsaman <sal...@xs...> - 2004-09-03 12:38:44
|
Dennis Smit wrote: >Have you done visual_init (&argc, &argv), lists always >get created in visual_init :) > >You can pass NULL, NULL at visual_init. > >if visual_init returns < 0 than there is a serious error. > >Try this first, if there is still a problem report back :) > >Cheers, >Dennis > > > OK, thanks, I have added visual_init(NULL,NULL) to the livido_setup function. It is returning -1. Hopefully this will go away when I have some plugins installed ? Salsaman. |
From: Dennis S. <sy...@yo...> - 2004-09-06 14:50:18
|
Is this sorted, has Duilio contacted you for tarballs ? If not, please say so! Cheers, Dennis > OK, thanks, I have added visual_init(NULL,NULL) to the livido_setup > function. > It is returning -1. Hopefully this will go away when I have some plugins > installed ? > > > Salsaman. |