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...
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...
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 ...
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...
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 ...
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.
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...
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...
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/...
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...
../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...
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-...
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...
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 ...
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...