Search found 15 matches

Go to advanced search

by ewong
20 Jun 2012 00:53
Forum: Development around libVLC
Topic: ES from a custom module: demux to decoder
Replies: 1
Views: 439

ES from a custom module: demux to decoder

Within the Open() method of a custom demux module, I assume that the stream must be added, es_out_Add( ) before sending data to it using es_out_Send(). Is that true? Is a decoder module invoked by specifying the codec type, i_codec = ? As shown by the ??? in the code snippet, how do you specify a cu...
by ewong
07 Jun 2012 22:49
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

nkoriyama , thanks for your help: I did not have any success setting the svn proxy settings within ubuntu, instead I ran tortoiseSVN within my Win7 HOST OS: - right-click and select the export feature: URL of repository: http://npapi-sdk.googlecode.com/sv/trunk - select a Export directory, fully re...
by ewong
06 Jun 2012 15:55
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

A Browser was able to see the files in the folder: http://npapi-sdk.googlecode.com/svn/trunk/headers Edited the servers file: tried my local ~/.subversion/servers as well as the system svn servers file and uncommented and modified the following lines: http-proxy-host = 74.125.142.82 http-proxy-port ...
by ewong
06 Jun 2012 05:06
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

Thanks, as you recommended. Downloading and compiling the qt4 library allowed make to run to completion. Next, I tried: make package-win32-zip and also make package-win32. Both of the builds, stopped at this point test -z "/home/v/vlc/win32/_win32/bin" || /bin/mkdir -p "/home/v/vlc/wi...
by ewong
05 Jun 2012 21:25
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

As you suggested After deleting the files (moc, uic and rcc) from contrib/$(host-triplet)/bin, you have to re-configure. Because they are scanned when configuring. See config.log. Re-configured the build, now it stops as shown below CXX libqt4_plugin_la-main_interface_win32.lo In file included from ...
by ewong
05 Jun 2012 20:20
Forum: Development around libVLC
Topic: OutofTree Cross-compile : WIN32
Replies: 6
Views: 1715

Re: OutofTree Cross-compile : WIN32

Access module needs to define either pf_read or pf_block function to provide data.
Is it possible to call to a win32 dll from a function? The drivers for the serial-like communications
are stored in the DLL. The header file is also available.
by ewong
05 Jun 2012 19:47
Forum: Development around libVLC
Topic: OutofTree Cross-compile : WIN32
Replies: 6
Views: 1715

Re: OutofTree Cross-compile : WIN32

In the Building section of the OutOfTreeCompile page, the last sentence states: If cross-compiling, you will probably need to adjust the pkg-config environment variables. Otherwise pkg-config will use the native VLC development files (if found) or simply fail. For example, if cross-compiling i686-w6...
by ewong
05 Jun 2012 18:37
Forum: Development around libVLC
Topic: OutofTree Cross-compile : WIN32
Replies: 6
Views: 1715

Re: OutofTree Cross-compile : WIN32

Uh? Usually flash drive are mounted as a file system and accessed with normal file system functions (modules/access/file.c). Sorry I forgot to detail the question. The data on the flash drives will be stored in a custom filesystem which is not FAT or FAT32. Data must be read from the drives using R...
by ewong
05 Jun 2012 17:44
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

Thanks for the detailed explanation. The host triplet used through the build process is: i686-w64-mingw32 Building VLC The make process started but stopped here. Making all in gui make[3]: Entering directory `/home/v/vlc/win32/modules/gui' make all-recursive make[4]: Entering directory `/home/v/vlc/...
by ewong
05 Jun 2012 05:57
Forum: Development around libVLC
Topic: OutofTree Cross-compile : WIN32
Replies: 6
Views: 1715

Re: OutofTree Cross-compile : WIN32

Are there some examples of an access module accessing a flash drive. How does the access module request more data from the input device. Is it possible to set-up bi-direction communication with the input device using the access module? The access module will need some way of requesting more data fro...
by ewong
05 Jun 2012 05:49
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

../extras/package/win32/configure.sh --host=x86_64-w64-mingw32 configure: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used checking build system type... i686-pc-linux-gnu checking host system type... x86_64-w64-mi...
by ewong
04 Jun 2012 20:26
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Re: Win32Compile -- configure error using Ubuntu 12.04

Thanks for the suggestion, once applied, the following message appears: configure: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used checking build system type... i686-pc-linux-gnu checking host system type... i586-...
by ewong
02 Jun 2012 06:37
Forum: Development around libVLC
Topic: OutofTree Cross-compile : WIN32
Replies: 6
Views: 1715

OutofTree Cross-compile : WIN32

An imaging device requires several custom modules in order to stream and view images in the VLC Media Player. The user base is Win32/64 systems running WinXP -> Win7. A cross-compiler to build win32 applications has been setup using Virtual Box/Ubuntu. Modules: Access: A serial stream available thro...
by ewong
02 Jun 2012 05:27
Forum: Development around libVLC
Topic: Win32Compile -- configure error using Ubuntu 12.04
Replies: 29
Views: 17047

Win32Compile -- configure error using Ubuntu 12.04

Based on the instructions provided at http://wiki.videolan.org/Win32Compile, build environment: virtual box 4.16 , ubuntu 12.04 32-bit using the following: To compile VLC for Windows (32-bits or 64-bits), the Mingw-w64 toolchain is required: Debian/Ubuntu: run apt-get install gcc-mingw-w64-i686 all ...
by ewong
29 May 2012 05:23
Forum: Development around libVLC
Topic: Adding Modules: OutToTreeCompile -- Win 7 x64 system
Replies: 1
Views: 885

Adding Modules: OutToTreeCompile -- Win 7 x64 system

VLC Media Player v2.0.1 is installed in the folder Are the necessary files for adding modules located here? c:\Program Files (x86)\VideoLAN\VLC\sdk\include\vlc\plugins c:\Program Files (x86)\VideoLAN\VLC\sdk\libs MinGW is installed with the gcc compiler. A) Before attempting to create a module, this...

Go to advanced search