Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-15 | image decoders: crop image if allocated frame is smaller than requested | Petri Hintukainen | |
2012-06-15 | image: fix decoding images with odd width | Petri Hintukainen | |
2012-06-15 | Check 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-12 | Fixed raw yuv decoding: can't change size of _source_ image | Torsten Jager | |
2012-06-09 | Correct detection of AAC ADIF. | Darren Salt | |
2012-06-09 | Fix a possible NULL dereference when cleaning up in the FFT vis plugin code. | Darren Salt | |
2012-06-09 | Double-free with some AAC files (missing check). | Darren Salt | |
2012-06-08 | mng: 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-08 | Fix utilization of _POSIX_THREAD_PRIORITY_SCHEDULING macro | Brad 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-08 | demux_ts: increased max A-V diff to 4 seconds | Petri Hintukainen | |
Fixes playback of some DVB streams (bug 381) | |||
2012-06-06 | fix make uninstall for libxine-1.def | Volker Grabsch | |
"make uninstall" tries to remove the local "libxine-1.def" instead of the installed "/.../i686-pc-mingw32/lib/libxine-1.def". | |||
2012-06-06 | fix install/uninstall static library in windows | Volker 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-05 | Fixed -no-undefined handling with mingw and cygwin | Carlo 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-05 | Fix building with cygwin | Carlo 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-05 | Added missing ifdef AVCODEC_HAS_REORDERED_OPAQUE | Carlo Bramini | |
2012-06-05 | Added check for AVCodecContext.color_range and AVCodecContext.colorspace | Petri Hintukainen | |
2012-06-05 | ffmpeg_compat.h: fixed version check for old ffmpeg versions | Carlo Bramini | |
2012-05-30 | ff_video_decoder: Fixed mpeg2 parsing | Petri 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-29 | Fixed 91d04bf1862c | Petri Hintukainen | |
2012-05-29 | Moved defining ATTR_ALIGN after include configure.h. | Petri Hintukainen | |
ATTRIBUTE_ALIGNED_MAX is defined in configure.h. | |||
2012-05-29 | spaces -> tab in Makefile | Carlo Bramini | |
2012-05-28 | Fixed U-plane conversion (YUVJ444P -> YUV420) | Petri Hintukainen | |
2012-05-28 | ff_video_decoder: fixed DR1 frame garbage collector when using multithreaded ↵ | Petri Hintukainen | |
decoding. | |||
2012-05-10 | ff_video_decoder: fixed cropping | Torsten Jager | |
2012-05-10 | ff_video_decoder: convert full range YUV to mpeg range | Torsten Jager | |
2012-04-26 | Fixed demux_qt for the pts < dts case | Torsten Jager | |
2012-04-26 | Check read() return value | Petri Hintukainen | |
2012-04-19 | Fixed decoding of full range YUV420 H.264 videos (segfault). Might still ↵ | Petri Hintukainen | |
need color space conversion ... | |||
2011-12-21 | Fix multithreaded initialization with API change | Roland Scheidegger | |
thread count needs to be set before avcodec_open otherwise it will be stuck with a single thread at least for h264 (might also want to use avcodec_open2 instead?) | |||
2012-04-12 | Use proper device paths for the Blu-ray and VCD input plugins on OpenBSD | Brad Smith | |
2012-02-28 | Made demux_ts send pts not dts even for reordered (b-framed) video. | Torsten Jager | |
This fixes a very old bug causing more or less unpredictable a/v lag. --HG-- extra : rebase_source : 094ca332b98500f3c10bec492c0003c83ff3152d | |||
2012-02-27 | Fixed race in metronom_get_option(): reading int64 is not atomic in 32-bit ↵ | Petri Hintukainen | |
systems | |||
2012-02-15 | Improved RGB→YUV conversion v2 (use MPEG range instead of full range) | Darren Salt | |
Video-out plugins expect MPEG range Y'CbCr data (Y'=16..235, Cb,Cr=16..240). RGB sources (still images and audio visualisation effects) need to be converted first. This patch fixes up the range calculations and corrects an off-by-one in the range for Cb and Cr over commit 68fcd69fb3b6 (which was reverted due to API change). It should also provide a little more accuracy: I've gone back to the source (http://www.itu.int/rec/R-REC-BT.601/) for the conversion information. (We should use float or double here, but that would be an ABI change.) | |||
2012-02-14 | Backed out RGB→YUV patch – API change. | Darren Salt | |
Anything which uses the COMPUTE_* macros would need to be recompiled because of the use of new tables. This change needs to be conditional somehow, at least externally. | |||
2012-02-14 | Improved RGB->YUV conversion (use mpeg range instead of full range) | Torsten Jager | |
Video out plugins expect mpeg range yuv data (y=16..235, uv=16..239). RGB sources (still images and audio visualisation effects) need to be converted first. | |||
2012-02-14 | Fix video driver crash when accessing unsupported properties | Torsten Jager | |
2012-02-14 | Fixed asx demuxer | Torsten Jager | |
2012-02-09 | Make the “PMT scan timed out” message a lot less scary. | Darren Salt | |
2012-02-09 | Kill a memory leak in the DVB tuning code. | Darren Salt | |
2012-01-29 | fix compile against recent ffmpeg | Edgar Hucek | |
2012-02-03 | Merge. | Darren Salt | |
2012-02-02 | vo_opengl: quick-fix to enable OSD when using fragment shader for YUV ↵ | Petri Hintukainen | |
conversion. Proper (HW-accelerated) implementation would use OpenGL texture to blend the OSD directly to RGB video texture. | |||
2012-02-01 | Remove ALSA resampler bypass | David Flater | |
In 2005, xine-lib 1.1.1 added the following change: xine-lib (1.1.1) 2005-11-15 * Improve sound quality when using alsa 1.0.9 or above. When playing a 44.1khz stream on a 48khz only capable sound card. It bypasses alsa-lib resampler and uses xine's That made sense when Alsa's resampling was the worst thing ever. But now, if one installs alsa-plugins-1.0.25 and puts this in ~/.asoundrc: defaults.pcm.rate_converter "samplerate_best" Alsa then does markedly better resampling (using libsamplerate) than xine-lib (using its own algorithm). The bypass added in 2005 is therefore preventing the use of a higher-quality algorithm and blocking the ability to tune that algorithm in ~/.asoundrc, and no longer seems to have any redeeming value. --HG-- extra : transplant_source : %AE%96zte%B0%ED%B6C%BC%89%02%1F%05%21%BD%ED%D6%8C6 | |||
2012-01-31 | frame garbage collector in ff_reset | Edgar Hucek | |
2012-01-30 | Compile failure in osd.c with sys-libs/zlib-1.2.6 | Ulrich Müller | |
2012-01-18 | Hack to avoid xine-list-* causing catalog.cache to be written. | Darren Salt | |
2012-01-18 | Fixed pp_context and pp_mode | Petri Hintukainen | |
2012-01-18 | avcodec_init(), avcodec_alloc_context() and avcodec_open() are depreated | Petri Hintukainen | |
2012-01-18 | Moved ffmpeg API version checks to single header | Petri Hintukainen | |
2012-01-18 | Simplify | Petri Hintukainen | |