summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-15Check allocated Xv iamge size. Adjust frame size if allocated frame is ↵Petri Hintukainen
smaller than requested. Based on patch from http://bugs.xine-project.org/show_bug.cgi?id=108
2012-06-15Increased image and gdkpixbuf decoder priorities by 1Petri Hintukainen
Prefer image and gdkpixbuf over ffmpeg when decodeing JPEG images
2012-06-15Merge from 1.1Petri Hintukainen
--HG-- rename : src/libxinevdec/gdkpixbuf.c => src/video_dec/gdkpixbuf.c rename : src/libxinevdec/image.c => src/video_dec/image.c
2012-06-13libjpeg: use proc_slice() when available.Petri Hintukainen
~25% faster with XShm video driver (Atom N550, 18Mpix JPEG)
2012-06-12Changelog updatePetri Hintukainen
2012-06-12Add fast libjpeg based JPEG decoderPetri Hintukainen
Support downscaling images when vo can't handle large images
2012-06-12Added get_autoplay_list()Petri Hintukainen
2012-06-12Add test image generator input pluginTorsten Jager
2012-06-12Fixed raw yuv decoding: can't change size of _source_ imageTorsten Jager
2012-06-11Query max supported Xv image sizePetri Hintukainen
2012-06-11Added VO_PROP_MAX_VIDEO_WIDTH and VO_PROP_MAX_VIDEO_HEIGHTPetri Hintukainen
2012-06-11demux_image: Use BUF_VIDEO_JPEG for JPEG imagesPetri Hintukainen
2012-06-11image: added BUF_VIDEO_JPEG to supported_typesPetri Hintukainen
2012-06-12Optimized memory allocation (image size is known)Torsten Jager
2012-06-12Merge from 1.1Petri Hintukainen
--HG-- rename : src/libxinevdec/yuv.c => src/video_dec/yuv.c
2012-06-10Fix building on non-x86 systemsPetri Hintukainen
2012-06-09Added signature for changeset c3293ab97f32Darren Salt
2012-06-09Added tag 1.2.2 for changeset c3293ab97f32Darren Salt
2012-06-09Added signature for changeset 948bb6010a3eDarren Salt
2012-06-09Added tag 1.1.21 for changeset 948bb6010a3eDarren Salt
2012-06-09Changelog updates; release.1.2.2Darren Salt
2012-06-09Merge from 1.1.Darren Salt
--HG-- rename : src/libfaad/xine_faad_decoder.c => src/audio_dec/xine_faad_decoder.c
2012-06-09Bump shlib version (compatible); release.1.1.21Darren Salt
2012-06-09Correct detection of AAC ADIF.Darren Salt
2012-06-09Fix a possible NULL dereference when cleaning up in the FFT vis plugin code.Darren Salt
2012-06-09Double-free with some AAC files (missing check).Darren Salt
2012-06-09Use rsvg-convert, where available, for documentation images.Darren Salt
2012-06-08Changelog update.Darren Salt
2012-06-08mng: fixed loop play of short streams.Petri Hintukainen
discontinuity is not detected with short streams. _x_demux_control_start() is not enough; BUF_CONTROL_START in decoders skips discontinuity indication when gapless switch is in use.
2012-06-08Merge from 1.1Petri Hintukainen
2012-06-08Fix utilization of _POSIX_THREAD_PRIORITY_SCHEDULING macroBrad Smith
A POSIX compliant OS can have a setting of (-1) instead of say 200112L to indicate that the OS does not implement the feature. The code as it is would still attempt to utilize the functions if (-1) were being set and fail to build.
2012-06-08Merge from 1.1Petri Hintukainen
2012-06-08Added support for flac in matroskaPetri Hintukainen
2012-06-08demux_ts: increased max A-V diff to 4 secondsPetri Hintukainen
Fixes playback of some DVB streams (bug 381)
2012-06-07demux_image: added bmp supportTorsten Jager
2012-06-08Merge from 1.1Petri Hintukainen
2012-06-06Merge from 1.1Petri Hintukainen
2012-06-06fix make uninstall for libxine-1.defVolker Grabsch
"make uninstall" tries to remove the local "libxine-1.def" instead of the installed "/.../i686-pc-mingw32/lib/libxine-1.def".
2012-06-06fix install/uninstall static library in windowsVolker Grabsch
The problem is that libxine-1.def is not generated when building a static library, so it can't be installed or uninstalled. So the corresponding commands in Makefile.am should be allowed to fail.
2012-06-05Merge from 1.1Petri Hintukainen
2012-06-05Fixed LIBS with cygwinCarlo Bramini
@INTLLIBS@ is wrong because it should be $(INTLLIBS) instead (and infact it causes an error at compile time because it is not expanded), that piece of code is a nonsense: under cygwin, libintl is added like in all posix environments.
2012-06-05Fixed -no-undefined handling with mingw and cygwinCarlo Bramini
"-no-undefined" is not a linker flag, it's a libtool flag, so it must be removed from LDFLAGS for CYGWIN and MINGW. There is already another variable for that purpose.
2012-06-05CYGWIN needs PTHREAD_CFLAGS to be empty and PTHREAD_LIBS to be "-lpthread"Carlo Bramini
2012-06-05Fix building with cygwinCarlo Bramini
CYGWIN is a full POSIX environment, it does not need to include windows.h (it even causes an error if you try).
2012-06-05Added missing ifdef AVCODEC_HAS_REORDERED_OPAQUECarlo Bramini
2012-06-05Added check for AVCodecContext.color_range and AVCodecContext.colorspacePetri Hintukainen
2012-06-05ffmpeg_compat.h: fixed version check for old ffmpeg versionsCarlo Bramini
2012-05-30Merge from 1.1Petri Hintukainen
2012-05-30ff_video_decoder: Fixed mpeg2 parsingPetri Hintukainen
Fixes following errors from ffmpeg: [mpeg1video @ 0x9ba7f80] ignoring SEQ_START_CODE after 101 [mpeg1video @ 0x9ba7f80] ignoring seq ext after 101 [mpeg1video @ 0x9ba7f80] ignoring GOP_START_CODE after 101 [mpeg1video @ 0x9ba7f80] invalid cbp at 41 0 [mpeg1video @ 0x9ba7f80] concealing 405 DC, 405 AC, 405 MV errors
2012-05-29Merge from 1.1Petri Hintukainen
--HG-- rename : src/xine-utils/attributes.h => include/xine/attributes.h