- Sep 30, 2014
-
-
Rémi Denis-Courmont authored
-
- Sep 27, 2014
-
-
Rémi Denis-Courmont authored
-
- Sep 21, 2014
-
-
Tristan Matthews authored
-
- Sep 17, 2014
-
-
Rémi Denis-Courmont authored
-
- Sep 10, 2014
-
-
David authored
-
- Sep 04, 2014
-
-
Rémi Denis-Courmont authored
-
- Sep 01, 2014
-
-
The mmal codec plugin is built as a part of the mmal module now. This drops the ability to en-/disable codec support independently from the vout, but in fact currently there is no mmal implementation which wouldn't support both modules, so it seems sane to build them together as this unclutters the configure scripts a little. Signed-off-by:
Julian Scheel <julian@jusst.de> Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
As the mmal modules will require some shared code in the future move them out of the split directory structure into a hw/mmal subdirectory, like it is handled with vdpau plugins already. Signed-off-by:
Julian Scheel <julian@jusst.de> Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- Aug 31, 2014
-
-
Signed-off-by:
Felix Paul Kühne <fkuehne@videolan.org>
-
- Aug 30, 2014
-
-
Rémi Denis-Courmont authored
Remove unused checks for locale.h, machine/parm.h, scsi/scsi.h, sys/time.h, and sys/ioctl.h. Simplify checks for net/if.h (this has no dependency) and sys/mounth.h (sys/param.h).
-
Rémi Denis-Courmont authored
-
- Aug 28, 2014
-
-
Rémi Denis-Courmont authored
-
Tristan Matthews authored
-
- Aug 23, 2014
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- Aug 22, 2014
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- Aug 17, 2014
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- Aug 15, 2014
-
-
Fixed-by:
Francois Cartegnie <fcvlcdev@free.fr> Signed-off-by:
Francois Cartegnie <fcvlcdev@free.fr>
-
- Aug 12, 2014
-
-
This fixes the following error on pdksh v5.2.14. ----- sed: -e expression #1, char 1: unknown command: `"' ----- Signed-off-by:
Rafaël Carré <funman@videolan.org>
-
- Aug 02, 2014
-
-
Jean-Baptiste Kempf authored
Anything older will crash a lot.
-
- Jul 31, 2014
-
-
Rafaël Carré authored
-
Rafaël Carré authored
-
- Jul 30, 2014
-
-
Rafaël Carré authored
-
- Jul 29, 2014
-
-
François Cartegnie authored
Allows decompression and access through rar, lha, tar, ... Mostly unseekable.
-
- Jul 26, 2014
-
-
Rafaël Carré authored
-
- Jul 23, 2014
-
-
Rémi Denis-Courmont authored
This fixes warnings with PulseAudio and with MingW.
-
- Jul 04, 2014
-
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Jun 19, 2014
-
-
Rémi Denis-Courmont authored
-
- Jun 14, 2014
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
SI NON CONFECTVS, NON REFICIAT.
-
When building current HEAD of master for x86_64-w64-mingw32 against current contribs, compilation fails at libmod_plugin due to undefined symbols of the form __imp_ModPlug_*. This patch modifies libmodplug in contribs by adding -DMODPLUG_STATIC to CFlags in the pkg-config file. A bug is also fixed in the main build system to make sure the CFLAGS are picked up from this pkg-config file. This problem occurs because of the following code in contrib/x86_64-w64-mingw32/include/libmodplug/modplug.h. This code is present in libmodplug obtained from running "make fetch & make" in the contribs directory, but not present in the prebuilt contribs obtained from running "make prebuilt". #if defined(_WIN32) || defined(__CYGWIN__) # if defined(MODPLUG_BUILD) && defined(DLL_EXPORT) # define MODPLUG_EXPORT __declspec(dllexport) # elif defined(MODPLUG_BUILD) || defined(MODPLUG_STATIC) # define MODPLUG_EXPORT # else # define MODPLUG_EXPORT __declspec(dllimport) # endif When building for Windows, if MODPLUG_STATIC is not defined, MODPLUG_EXPORT is defined as "__declspec(dllimport)". On Windows, dynamic symbols are prefixed with "__imp_", so this causes GCC to adjust the symbol references to the libmodplug functions accordingly. This patch therefore adds a patch to contribs for libmodplug's pkg-config file. It adds -DMODPLUG_STATIC to CFlags, so that when libmod_plugin is building it will have the correct symbol names. However, there is also a bug in the build system that needs to be fixed for this to work. The configure script sets a CXXFLAGS_mod containing the output of pkg-config for libmodplug, but not CFLAGS_mod. Additionally, the Makefile.ac for libmod_plugin sets CXXFLAGS when in fact the relevant files (mod.c) are plain C. Autotools therefore ignores these CXXFLAGS when generating a makefile. The solution is to add a macro to configure.ac to set CFLAGS_mod. This then needs to be used in modules/demux/Makefile.am to populate libmod_plugin_la_CFLAGS instead of libmod_plugin_la_CXXFLAGS (which gets ignored). Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- May 29, 2014
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
The code no longer compiles with older versions anyway.
-
This fixes the situation where both Qt4 and Qt5 are installed but the global moc/rcc/uic commands are provided by Qt4 and Qt5's versions are not globally installed. VLC previously picked up Qt4's moc/.. version but built against Qt5. Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- May 23, 2014
-
-
- May 22, 2014
-
-
This plugin is capable of decoding MPEG-2 and H264 video through the Multi Media Abstraction Layer (MMAL) by Broadcom. It is supported by recent Broadcom SoCs and found on the widely spread Raspberry Pi. Signed-off-by:
Dennis Hamester <dennis.hamester@gmail.com> Signed-off-by:
Julian Scheel <julian@jusst.de> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
This plugin uses the Multimedia Abstraction Layer (mmal) by Broadcom. It is supported on recent Broadcom SoCs as found on the well known Raspberry Pi. The plugin features support for native blending of overlays through DispManX. Furthermore it supports automatic adaption of refresh rate to the video being played through the tvservice API. Signed-off-by:
Dennis Hamester <dennis.hamester@gmail.com> Signed-off-by:
Julian Scheel <julian@jusst.de> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-