Page 1 of 1

Error launching VLC for AiX

Posted: 09 Jun 2006 16:40
by Lynxou
Hi,

I have to compile and run vlc on an AiX in order to stream files.

After some hours, i finally succeeded in compiling VLC.

However after running vlc, I obtain this error for nearly each modules :(

[...]

[00000058] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/misc/libgrowl_plugin.so' (Function not implemented (_vlc_entry__0_8_5))
[00000059] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/mux/libmux_asf_plugin.so' (Function not implemented (_vlc_entry__0_8_5))
[00000060] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/mux/libmux_avi_plugin.so' (Function not implemented (_vlc_entry__0_8_5))
[00000061] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/mux/libmux_mpjpeg_plugin.so' (Function not implemented (_vlc_entry__0_8_5))
[00000062] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/mux/libmux_mp4_plugin.so' (Function not implemented (_vlc_entry__0_8_5))
[00000063] main module warning: cannot find symbol "vlc_entry__0_8_5" in file `modules/mux/libmux_dummy_plugin.so' (Function not implemented (_vlc_entry__0_8_5))

[...]
and then the fatal :

main vlc debug: module bank initialized, found 1 modules

Is it my compiler (gcc) who makes such error ? Or do I miss something ?

Thanks,
Lynxou

Posted: 09 Jun 2006 22:36
by zorglub
It looks like your dynamic linker does not work correctly.

You might want to try to use --enable-mostly-builtins on the configure line

Posted: 10 Jun 2006 09:48
by Lynxou
ok, i'm not at work (Week-end ! :wink: ) at the moment, but Monday morning i'll try this

Thanks :)

Posted: 12 Jun 2006 15:15
by Guest
Ok, this thing works, i succeeded in using 130 modules thanks to the "--enable-mostly-builtins" in ./configure options.

But the streaming doesn't work as the stream_out* modules are still absent.

In fact, when i run vlc i still have some "Function not implemented (_vlc_entry__0_8_5)". And i guess it's why stream_out* and http modules aren't here.

I tried --enable-sout but as it's "default enabled", it did nothing more.

My main question is, how can i make these modules work or where should i have a look at ?

I'm not afraid to change the code if needed. (I did so to compile on Solaris 10).

Posted: 12 Jun 2006 15:16
by Lynxou
Sorry it was me.