Page 1 of 1

enabled the sout module

Posted: 28 Dec 2013 10:49
by rowa
I've downloaded the latest version of vlc for android,
and enabled the sout module in configure.sh of the root folder

Code: Select all

sh $VLC_SOURCEDIR/configure --host=$TARGET_TUPLE --build=x86_64-unknown-linux $EXTRA_PARAMS \ --enable-live555 --enable-realrtsp \ --enable-avformat \ --enable-swscale \ --enable-avcodec \ --enable-opus \ --enable-opensles \ --enable-android-surface \ --enable-mkv \ --enable-taglib \ --enable-dvbpsi \ --disable-vlc --disable-shared \ --disable-update-check \ --disable-vlm \ --disable-dbus \ --disable-lua \ --disable-vcd \ --disable-v4l2 \ --disable-gnomevfs \ --disable-dvdread \ --disable-dvdnav \ --disable-bluray \ --disable-linsys \ --disable-decklink \ --disable-libva \ --disable-dv1394 \ --disable-mod \ --disable-sid \ --disable-gme \ --disable-tremor \ --disable-mad \ --disable-dca \ --disable-sdl-image \ --disable-zvbi \ --disable-fluidsynth \ --disable-jack \ --disable-pulse \ --disable-alsa \ --disable-samplerate \ --disable-sdl \ --disable-xcb \ --disable-atmo \ --disable-qt \ --disable-skins2 \ --disable-mtp \ --disable-notify \ --enable-libass \ --disable-access_output_udp \ --disable-svg \ --disable-udev \ --enable-libxml2 \ --disable-caca \ --disable-glx \ --enable-egl \ --enable-gles2 \ --disable-goom \ --disable-projectm \ --enable-sout \ --disable-vorbis \ --disable-faad \ --disable-x264 \ --disable-schroedinger --disable-dirac \
and then I run the sh compile.sh command,
but several minutes later, i've got the wrong message as below:

Code: Select all

/home/marsnie/java/android-ndk-r9b/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: ./obj/local/armeabi-v7a/objs-debug/vlcjni/libvlcjni.o: in function vlc_static_modules:libvlcjni.c(.data.rel+0x338): error: undefined reference to 'vlc_entry__access_output_udp' collect2: ld returned 1 exit status
how could I solve the problem

Re: enabled the sout module

Posted: 29 Dec 2013 03:44
by rowa
I think the core problem is at this:

Code: Select all

undefined reference to 'vlc_entry__access_output_udp'
but how could I add the 'access_output_udp' modul by configurate before I compile the source code?

Re: enabled the sout module

Posted: 29 Dec 2013 04:27
by edwardw
The module is probably blacklisted.

Re: enabled the sout module

Posted: 29 Dec 2013 04:44
by rowa
thanks!
And where could I remove the module from blacklist?

Re: enabled the sout module

Posted: 29 Dec 2013 04:44
by edwardw
Look in find_modules.sh

Re: enabled the sout module

Posted: 30 Dec 2013 10:01
by rowa
I've checked the file, and I didn't find the relative module in the blacklist

Re: enabled the sout module

Posted: 03 Jan 2014 03:23
by dfdf
I've checked the file, and I didn't find the relative module in the blacklist
I want to ask the same question,thanks for any reply.