Search found 36 matches

Go to advanced search

by playing
26 Apr 2011 08:44
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC on Android
Replies: 53
Views: 46460

Re: VLC on Android

you should modifing the libvlcjni.h

marked the vlc_declare_plugin(stats) and vlc_plugin(stats)
by playing
22 Apr 2011 14:50
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android play http video crash
Replies: 3
Views: 1041

Re: vlc-android play http video crash

i replace poll to ffmpeg 's poll function , and it don't crash , but can't play also log: 04-22 09:27:30.704: WARN/vlc(503): [0x31a39c] ps demux warning: found sync code 04-22 09:27:30.704: DEBUG/vlc(503): [0x3123b4] main input debug: selecting program id=0 04-22 09:27:30.713: DEBUG/vlc(503): [0x31a...
by playing
21 Apr 2011 05:30
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android play http video crash
Replies: 3
Views: 1041

Re: vlc-android play http video crash

in net_Printf it call net_Write function
and net_Write call poll again
if (poll (ufd, sizeof (ufd) / sizeof (ufd[0]), -1) == -1)
by playing
20 Apr 2011 17:20
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android play http video crash
Replies: 3
Views: 1041

vlc-android play http video crash

i trace it it crash in src/network/tcp.c net_Connect function when call poll do /* NOTE: timeout screwed up if we catch a signal (EINTR) */ val = poll (ufd, sizeof (ufd) / sizeof (ufd[0]), timeout); while ((val == -1) && (net_errno == EINTR)); i add a poll function into tcp.c, and comment //...
by playing
31 Mar 2011 08:12
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

the order is import , i chanage /vlc-android/extras/package/android/makefile -lUsageEnvironment -lliveMedia -lgroupsock -lBasicUsageEnvironment\n" >> $(APK_MK); \ to -lliveMedia -lUsageEnvironment -lBasicUsageEnvironment -lgroupsock\n" >> $(APK_MK); \ then make got this: administrator@ubun...
by playing
30 Mar 2011 10:43
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

chanage /vlc-android/modules/demux/live555.cpp comment iostream include : //#include <iostream> cd builddir run ./compile then i got liblive555_plugin.a in /vlc-android/builddir/modules/demux/.lib i chanage /vlc-android/extras/package/android/makefile add -lUsageEnvironment -lliveMedia -lgroupsock -...
by playing
30 Mar 2011 04:53
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

cd testProgs ; make make[3]: Entering directory `/home/administrator/code/vlc-android/extras/contrib/build-src/live/testProgs' arm-linux-androideabi-g++ -c -I../UsageEnvironment/include -I../groupsock/include -I../liveMedia/include -I../BasicUsageEnvironment/include -I/home/administrator/android-ndk...
by playing
30 Mar 2011 04:52
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

i Entering directory `/home/administrator/code/vlc-android/extras/contrib/build-src/live/UsageEnvironment' chanage makefile.head add -I/home/administrator/android-ndk-r5b/platforms/android-9/arch-arm/usr/include the same `/home/administrator/code/vlc-android/extras/contrib/build-src/live/BasicUsageE...
by playing
30 Mar 2011 03:53
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

i Entering directory `/home/administrator/code/vlc-android/extras/contrib/build-src/live/groupsock' chanage makefile.head add -I/home/administrator/android-ndk-r5b/platforms/android-9/arch-arm/usr/include then make administrator@ubuntu:~/code/vlc-android/extras/contrib$ make then got these error adm...
by playing
29 Mar 2011 11:32
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

i open /home/administrator/code/vlc-android/extras/contrib/build-src/live/liveMedia/include/Locale.hh and see this #ifndef _LOCALE_HH #define _LOCALE_HH // If you're on a system that (for whatever reason) doesn't have the "setlocale()" function, then // add "-DLOCALE_NOT_USED" to...
by playing
29 Mar 2011 10:11
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

so i add -I/home/administrator/android-ndk-r5b/platforms/android-9/arch-arm/usr/include to /home/administrator/code/vlc-android/extras/contrib/build-src/live/liveMedia/Makefile.head can find .h file now , but aslo have error -DSOCKLEN_T=socklen_t -DNO_SSTREAM=1 -D_LARGEFILE_SOURCE=1 -D_FILE_OFFSET_B...
by playing
29 Mar 2011 05:01
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

Re: port live555 to android?

these .h file can't bean found: ../groupsock/include/NetCommon.h:71:24: error: sys/socket.h: No such file or directory ../groupsock/include/NetCommon.h:72:22: error: sys/time.h: No such file or directory ../groupsock/include/NetCommon.h:73:24: error: netinet/in.h: No such file or directory ../groups...
by playing
29 Mar 2011 03:56
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

I am building this for the first time and followed the steps above, but am getting the following error make[1]: Leaving directory `/home/pgjensen/vlc-android/extras/package/android/vlc-android' === Building APK == [echo] Creating output directories if needed... [echo] Compiling aidl files into Java...
by playing
28 Mar 2011 11:02
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

hey android.andjoy :
my building environment is the same
see this url
viewtopic.php?f=13&t=87301&p=288940&hil ... er#p288940
modifing the libvlcjni.h
by playing
28 Mar 2011 03:12
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

hey android.andjoy :
my os is ubuntu,ndk is android-ndk-r5b, android-sdk is 2.2
i download vlc-android again, rebuild
i have not chanage the building environment, is the same when i receive that error
by playing
24 Mar 2011 06:15
Forum: VLC media player for Linux and friends Troubleshooting
Topic: port live555 to android?
Replies: 9
Views: 8110

port live555 to android?

i want vlc-android could play live stream video,so i must port live555 to android,right? i chanage vlc-android/extras/contrib : all: .zlib \ .a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora \ .flac .speex .faad .lame .ffmpeg \ .twolame \ .png .dvbpsi \ .dca .kate .live i add .live i also changage co...
by playing
21 Mar 2011 06:47
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android how to play http video?
Replies: 3
Views: 1969

Re: vlc-android how to play http video?

i download live555,put it in ~/code, and run ./genMakefiles linux make to build live555 then chanage extras/package/android/configure.sh enable live555 sh ../configure --host=arm-eabi-linux --build=x86_64-unknown-linux \ --enable-static-modules \ --enable-debug \ --disable-qt4 \ --disable-skins2 \ -...
by playing
21 Mar 2011 05:48
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android how to play http video?
Replies: 3
Views: 1969

Re: vlc-android how to play http video?

i chanage mLibVlc.readMedia(filePath); to mLibVlc.readMedia("http://forum.ea3w.com/coll_ea3w/attach/2008_10/12237832415.3gp"); and the app crash,this is my error message: 03-21 04:44:23.812: DEBUG/dalvikvm(60): GC_EXPLICIT freed 1363 objects / 71080 bytes in 119ms 03-21 04:44:23.821: INFO/...
by playing
21 Mar 2011 02:15
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

Actually i don't know, i am sorry :)
by playing
20 Mar 2011 16:37
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

my os is ubuntu,ndk is android-ndk-r5b, android-sdk is 2.2 this is my build step: 1.cd ~/code 2.git clone git://git.videolan.org/vlc/vlc-android.git 3.cd vlc-android/extras/contrib/ 4.export ANDROID_NDK=/usr/local/android-ndk-r5b 5../bootstrap -t arm-eabi -d android 6.make sure those tools is instal...
by playing
20 Mar 2011 13:06
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android how to play http video?
Replies: 3
Views: 1969

vlc-android how to play http video?

i build vlc-android, and it can't play http video,did i need live555?
how to compiling vlc-android whit rtsp surpported. how to add live555 to (extras/contrib)??

thank you ..
by playing
20 Mar 2011 12:27
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

Re: vlc-android build error

i download vlc-android again, rebuild
and this error is gone
by playing
18 Mar 2011 06:30
Forum: VLC media player for Linux and friends Troubleshooting
Topic: vlc-android build error
Replies: 22
Views: 12984

vlc-android build error

this is my error message administrator@ubuntu:~/code/vlc-android/vlc-android/extras/package/android$ VLC_BUILD_DIR=~/code/vlc-android/vlc-android/builddir VLC_CONTRIB=~/code/vlc-android/vlc-android/extras/contrib/build make === Building libvlcjni === make[1]: Entering directory `/home/administrator/...

Go to advanced search