Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-06 | 1.1.18.1.1.1.18.1 | Darren Salt | |
2010-03-06 | Add an autoconf flag to allow disabling of the Sun audio sound backend. | Brad Smith | |
2010-02-25 | Fix build with the old, outdated and deprecated internal ffmpeg. | Darren Salt | |
2010-02-24 | Fix up V4L/V4L2 for non-Linux. | Darren Salt | |
2010-02-21 | WMAPro support | Christopher Martin | |
Rename "wmav3" to "wmapro" in xine-lib's internals to line up xine-lib's nomenclature with what everyone else calls it and knows it as. [Tweaked by ds to avoid API change.] Tell xine-lib that when it finds wmapro, look to ffmpeg. ffmpeg's wmapro decoder is unique in that it puts out samples that are floats, not 16-bit ints. These need to be converted. This requires external ffmpeg. | |||
2010-02-06 | libv4l check shouldn't fail & abort unless --enable-libv4l is given. | Darren Salt | |
2010-02-05 | Fix testing for DVB support. | Darren Salt | |
2010-01-29 | Link the v4l2 plugin with libv4l2 (if required); use pkgconfig to locate it. | Darren Salt | |
2010-01-26 | Merge v4l2 support. | Darren Salt | |
2010-01-25 | Bump version no. etc. | Darren Salt | |
2010-01-06 | Add v4l2 to the makefile | Trever Fischer | |
--HG-- branch : v4l | |||
2009-12-06 | Fix XShm detection in the absence of pkgconfig or x11.pc. | Darren Salt | |
2009-12-04 | Bump the FLAC decoder's priority above ffmpegaudio, and build it by default. | Darren Salt | |
2009-12-01 | 1.1.17.1.1.17 | Darren Salt | |
2009-08-31 | Connect up the BluRay subtitles decoder. | Darren Salt | |
--HG-- rename : src/libspudvb/Makefile.am => src/libspuhdmv/Makefile.am | |||
2009-07-15 | Port to new libmpcdec API | Yavor Doganov | |
This is an incomplete patch porting xine-lib to the new libmpcdec API. Incomplete, because 1) no SV8 support and 2) still no seeking. | |||
2009-07-05 | Disappearing DVB plugin (Linux, not Hurd) | Chris Rankin | |
I noticed recently that xine's DVB plugin had disappeared. After a bit of investigation (and a few handfuls of hair) I have created this patch: | |||
2009-06-21 | No DVB support on Hurd. | Darren Salt | |
2009-05-17 | Require gettext 0.17; pull in some related updates (via autopoint). | Darren Salt | |
2009-05-10 | Remove default /usr/lib when locating libXvMC & libXvMCW. | Darren Salt | |
Was breaking on systems which, for some strange reason, use /usr/lib64. | |||
2009-02-18 | Add support for new OpenBSD sound API | Brad Smith | |
2009-04-03 | 1.1.16.3.xine-lib-1_1_16_3-release1.1.16.3 | Darren Salt | |
2009-03-15 | Complain if both <ffmpeg/avutil.h> and <libavutil/avutil.h> are present. | Darren Salt | |
(Should have done this ages ago...) | |||
2009-03-08 | Enable libmpeg2new only if configured with --enable-libmpeg2new. | Darren Salt | |
2009-02-17 | Fix XINE_BUILD_DATE in the autoconf script. | Brad Smith | |
2009-02-10 | Restart 1.1.17 (again); revert changes made specifically for the release. | Darren Salt | |
2009-02-10 | 1.1.16.2; back out release changes intended for 1.1.17.xine-lib-1_1_16_2-release1.1.16.2 | Darren Salt | |
2009-02-10 | Disable libmpeg2new for release. | Darren Salt | |
2009-01-17 | Avoid libtool running ldconfig (where not needed) at install time. | Darren Salt | |
2009-01-16 | Rework ffmpeg codecs lists creation. | Darren Salt | |
This is intended to make it easier to add new codecs without breaking compilation with older ffmpeg and to see which codecs need to be added. | |||
2009-01-15 | Bump the API age and update the version number. | Darren Salt | |
2008-11-29 | Newer ImageMagick has GraphicsMagickWand.pc, not Wand.pc | Darren Salt | |
(Reported by Loïc Minier.) | |||
2009-01-12 | Enable libmpeg2new & clean it up. libmpeg2 remains preferred. | Darren Salt | |
2009-01-12 | Simplify using xine directories in configure, remove unnedded stuff. | František Dvořák | |
Fixed font installation for Windows platforms. | |||
2009-01-11 | xine-lib 1.1.16.1.xine-lib-1_1_16_1-release1.1.16.1 | Darren Salt | |
2009-01-09 | Works fine with libcaca 0.99beta14. Also fix up check output. | Darren Salt | |
2009-01-09 | libcaca version 0.99beta15 required (new dithering feature). | František Dvořák | |
Fixes bug #194. | |||
2008-09-17 | Mingw+MSys: NLS support, --enable-stdcall-fixup | Carlo Bramini | |
It was not possible to compile some parts of XINE-LIB with NLS enabled. It's also a good idea to explicitely enable --enable-stdcall-fixup for solving a huge amount of warnings. Attached patch fixes these problems. | |||
2008-12-20 | Ignore warnings about pointer signedness since we have signed read functions ↵ | Diego E. 'Flameeyes' Pettenò | |
in our plugins (for now). | |||
2008-11-22 | Fix linkage failure caused by the av_free() changes in the ffmpeg decoders. | Darren Salt | |
2008-11-19 | Enable basic warnings even when optimisations are disabled. | Diego E. 'Flameeyes' Pettenò | |
We don't want to have warnings conditional to extreme optimisations: if the compiler supports them, they should be enabled. The reason why they were conditional is that the code testing for GCC presence enabled both warnings and optimisations, and the warnings were carried over when the optimisations were made optional. | |||
2008-11-19 | Create a new macro CC_NOUNDEFINED to check for the -z defs flag or | Diego E. 'Flameeyes' Pettenò | |
equivalent. I wanted this because I'm going to reuse attribute.m4 with that macro for a couple other projects. This also removes AC_TRY_LDFLAGS since it's not used any longer (replaced by CC_CHECK_LDFLAGS, which also caches results). | |||
2008-11-19 | Update the CFLAGS checks to use the new CC_CHECK_CFLAGS_APPEND macros. | Diego E. 'Flameeyes' Pettenò | |
This should make it more readable, and avoid a few extra test. Also check for the -Werror= style for GCC 4.3 instead of the old -Werror-implicit-function-declaration. | |||
2008-10-17 | Replace configure test for PulseAudio version by cpp test | Matthias Ringwald | |
Version 0.9.6 has PA_PROTOCOL_VERSION 10, version 0.9.7 has 11. This simplifies configure and limits the knowledge about PA versions to the audio output plug-in. This time, the patch includes configure.ac, too. | |||
2008-10-16 | Tell autoconf to expand PULSEAUDIO_{CFLAGS|LIBS} | Matthias Ringwald | |
2008-09-20 | Don't convert unix-style / to windows-style \ on mingw | Matthias Ringwald | |
cygwin and msys are both happy with normal slashes and both per default use standard unix slashes, e.g., pwd reports '/'. the previous conversion in configure.ac lead to mixed stye paths which caused problems like bug #133 on some system. not converting to \ should solve those and make everything more consistent. | |||
2008-10-02 | Fix compilation for new auto*. | Matthias Hopf | |
2008-08-17 | Bump version ready for the next release. | Darren Salt | |
2008-08-13 | Allow (and prefer) use of external libfaad. | Darren Salt | |
2008-07-13 | Adjust checking for libavcodec to match the new external ffmpeg default. | Darren Salt | |