- 05 May, 2011 6 commits
-
-
Rémi Denis-Courmont authored
-
Benjamin Drung authored
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 04 May, 2011 4 commits
-
-
Mike Houben authored
Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
-
Rémi Denis-Courmont authored
-
Pierre Ynard authored
-
Pierre Ynard authored
-
- 03 May, 2011 5 commits
-
-
Pierre Ynard authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
-
Rémi Denis-Courmont authored
-
- 02 May, 2011 17 commits
-
-
Juha Jeronen authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
-
Juha Jeronen authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Juha Jeronen authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Juha Jeronen authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Juha Jeronen authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
It makes sense, especially since the libav/FFmpeg split
-
Rémi Denis-Courmont authored
Also, __USE_UNIX98 is a libc-internal definition. The build system is not supposed to define that directly (we have _GNU_SOURCE).
-
Rémi Denis-Courmont authored
(Note __BUILTIN__ was not used anymore as we have !__PLUGIN__)
-
Rémi Denis-Courmont authored
I don't this abomination to leak through the stable LibVLC interface. To link statically, modules should be linked into LibVLC instead. And then, there is no need to reintroduce the old "builtin" vlc-config type if all modules are built the same. In prehistoric times, the distinction was needed because some modules were static and some not.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 01 May, 2011 8 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
GCC takes the last -O* option, which defaults to -O0 anyway. With ./configure forcing -O0, there was no way to select a custom optimization level via external CFLAGS.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Optimizing VLC code for size is probably not such a great idea, considering that media playback is performance critical. There are better ways to reduce code size than -Os, e.g. Thumb(2) code on ARM. And of course, removing unneeded plugins and feature is the best way to reduce code size.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
In many cases, OSS was used when the builder forgot to install the alsa-lib development headers. This should not be an issue anymore, as ALSA is now required on Linux by default. I believe the fallback to OSS from ALSA and PulseAudio is causing more confusion than it solves problem. Besides, the OSS emulation by ALSA cannot mix, so OSS is almost completely useless on Linux, unless OSSv4 was specifically installed. Moreover, Linux distributions have started dropping OSS completely.
-
Rémi Denis-Courmont authored
This ensures that at least either ALSA or PulseAudio will be compiled by default (on Linux).
-
Rémi Denis-Courmont authored
This will be needed if/when we get a PulseAudio input and SD.
-