Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-27 | Merge. | Darren Salt | |
2013-09-27 | color_matrix.c: default to "Signal+Size". | Torsten Jager | |
This is preferred on any half-way sRGB compliant monitors. | |||
2013-09-27 | yuv2rgb_mmx: fix swapped modes. | Torsten Jager | |
This bug probably never hit anyway. Nobody uses 24bpp X displays, as they are way slower than 32 bit ones, or even unsupported by hw. | |||
2013-09-27 | demux_qt: simple (E)AC3 support. | Torsten Jager | |
Works at least with dvb stuff. | |||
2013-09-27 | Added const | Petri Hintukainen | |
2013-09-27 | Silence warning | Petri Hintukainen | |
2013-09-27 | vaapi: fix yuy2_to_nv12 | Petri Hintukainen | |
2013-09-27 | Added const | Petri Hintukainen | |
2013-09-27 | Hide warning | Petri Hintukainen | |
2013-09-27 | Hide warnings | Petri Hintukainen | |
2013-09-27 | Added const | Petri Hintukainen | |
2013-09-27 | Hide warnings | Petri Hintukainen | |
2013-09-27 | Added const | Petri Hintukainen | |
2013-09-27 | Silenced warnings | Petri Hintukainen | |
2013-09-26 | demux_nsv: removed extra input->get_current_pos() call | Petri Hintukainen | |
(was duplicated when the function was splitted in 2004 ...) | |||
2013-09-26 | Silenced warnings | Petri Hintukainen | |
2013-09-26 | Added const | Petri Hintukainen | |
2013-09-24 | Added tag 1.2.4 for changeset d9d1a5a69911 | Darren Salt | |
2013-09-24 | Release.1.2.4 | Darren Salt | |
2013-09-24 | Resync po/*. | Darren Salt | |
2013-09-23 | input_bluray: improved title transitions | Petri Hintukainen | |
When playlist ends, wait until all frames have been displayed. Without this menus are opened too early (while the old playlist is still playing) | |||
2013-09-23 | ChanglLog update (theora 4:2:2/4:4:4) | Petri Hintukainen | |
2013-09-23 | input_bluray: added support for BD-J (BluRay Java) | Petri Hintukainen | |
Requires ARGB overlay capable video driver (opengl2, vaapi, vdpau). | |||
2013-09-23 | input_bluray: make sure overlay is enabled | Petri Hintukainen | |
2013-09-23 | input_bluray: support overlay timings | Petri Hintukainen | |
2013-09-23 | input_bluray: ignore overlay drawing commands if overlay has not been opened | Petri Hintukainen | |
2013-09-23 | input_bluray: delay empty overlay hiding (hide at next FLUSH event) | Petri Hintukainen | |
2013-09-23 | input_bluray: handle overlay palette updates | Petri Hintukainen | |
2013-09-23 | Cosmetics | Petri Hintukainen | |
2013-09-23 | input_bluray: handle BD_EVENT_MENU | Petri Hintukainen | |
2013-09-22 | demux_aac: fixed check for ADIF header | Petri Hintukainen | |
(was broken in merge commit 5 years ago) detected with valgrind (branch condition depends on uninitialized data) | |||
2013-09-22 | demux_ts: log unknown stream types whlie parsing PMT | Petri Hintukainen | |
2013-09-22 | demux_ts: flush buffer when video data ends to sequence end code | Petri Hintukainen | |
(there won't be any more data -> no pusi -> last buffer is never flushed) | |||
2013-09-22 | Fix VC1 decoding | Petri Hintukainen | |
2013-09-20 | theora: support 4:4:4 and 4:2:2 pixel formats | Petri Hintukainen | |
2013-09-20 | Merge. | === Torsten Jager | |
2013-09-19 | Fix snapshot size. | Torsten Jager | |
Follow ratio while staying near the user setting. | |||
2013-09-19 | Really fix snapshot colors. | Torsten Jager | |
The real bug was libyuv2rgb_mmx outputting bgr24 instead of requested rgb24. Previous fix tried to work around by swapping the input UV planes as well. Better than nothing but... well. Now both modes are supported, and kludge removed. | |||
2013-09-19 | video_out_vdpau: dont work around already thread safe X11. | Torsten Jager | |
Still not sure whether this is the end of the story now. | |||
2013-09-19 | Fix a hang (lock bug) which happens if VAAPI plugin init fails. | Darren Salt | |
2013-09-18 | Put vzeroupper in the right place, ref. patch as sent to xine-devel. | Darren Salt | |
2013-09-18 | Revert use of automake's subdir-objects. | Darren Salt | |
It breaks distclean due to cross-dir source dependencies in makefiles. | |||
2013-09-18 | Don't remove misc/Makefile.plugin too early when cleaning. | Darren Salt | |
2013-09-18 | Fix inclusion of modplug.h. | Darren Salt | |
2013-09-18 | More vaapi build fixes. | Darren Salt | |
2013-09-18 | configure (decoders): remove extraneous ‘not found’ reports. | Darren Salt | |
2013-09-18 | Revert replacement of INCLUDES with AM_CPPFLAGS. | Darren Salt | |
2013-09-18 | Avoid using deprecated autoconf & automake features. | Darren Salt | |
asfheader.c is used in two places: same compiler flags, so is safe. | |||
2013-09-18 | Update changelog; bump version. | Darren Salt | |
2013-09-17 | Emit vzeroupper after avx memcpy | Roland Scheidegger | |
Emitting vzeroupper is necessary to avoid avx<->sse transition penalties (when using avx-256 instructions). This didn't really matter much in the past, since other code wasn't using avx, hence there was just a penalty once afterwards when sse code was executed. However, there's code in ffmpeg which mixes avx-128 and sse a lot, and each time this happens there's a huge penalty. This causes in particular ff_deblock_v_luma_8_avx to slow down by a factor of 50 or so which makes the whole decoding about twice as slow (might be dependent on the h264 stream or maybe ffmpeg version too, since ffmpeg will also emit vzeroupper when using avx-256 hence not doing it here might not always be an issue, but in the case I was seeing nothing else used avx-256). |