Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-25 | Instead of declaring op_size, use sizeof(ogg_packet) directly. | Diego 'Flameeyes' Pettenò | |
2007-06-17 | Add a ChangeLog entry for the Solaris branch. | Diego 'Flameeyes' Pettenò | |
2007-06-17 | Merge changes from Solaris branch. | Diego 'Flameeyes' Pettenò | |
2007-06-17 | A few minor changelog cleanups. | Darren Salt | |
2007-06-16 | Merge from 1.1 branch. | Diego 'Flameeyes' Pettenò | |
2007-06-16 | Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with ↵ | Diego 'Flameeyes' Pettenò | |
Solaris definitions. | |||
2007-06-15 | fix possible crash in xcbxv output plugin | "Christoph Pfister" | |
A null pointer dereference happens if reading a xv port attribute (which has been reported as readable) fails. This issue exists for example with proprietary (and a bit buggy ...) ati drivers; nevertheless it shouldn't cause a segmentation fault (the non-xcb version simply stores an unitialised value). This patches solves the issue in a clean way for both branches. Fixes debian bug #428612 :-) | |||
2007-06-14 | Fix building, missing include path. | Albert Lee | |
xine-lib-specific patch. | |||
2007-06-14 | Init mpegvideo only once (fixes when MMX and mediaLib are both present). | Albert Lee | |
Applied to FFmpeg tree already. | |||
2007-06-14 | Init dsputil only once (fixes when MMX and mediaLib are both present). | Albert Lee | |
Applied to FFmpeg tree already. | |||
2007-06-14 | Disable mediaLib support by default. | Diego 'Flameeyes' Pettenò | |
The licenses probably disallow the distribution of xine binaries built against mediaLib. And on non-VIS capable boxes is probably worse than our own code. | |||
2007-06-14 | Include bswap.h too. | Diego 'Flameeyes' Pettenò | |
2007-06-13 | Don't redefine the BE_16/32 macros. | Diego 'Flameeyes' Pettenò | |
Inspired by a patch by Albert Lee. | |||
2007-06-13 | Make explanation a constant string (gettext() strings are never freed). | Albert Lee | |
2007-06-13 | Fix parameter type. | Albert Lee | |
2007-06-13 | Avoid name collision (don't redefine NOPID). | Albert Lee | |
2007-06-13 | pgx32/64 need SUNDGA_CFLAGS | Albert Lee | |
2007-06-13 | Add printf format attribute. | Albert Lee | |
2007-06-13 | Avoid name collison (don't redefine TRANSPARENT). | Albert Lee | |
2007-06-13 | Support Solaris byteorder.h macros. | Albert Lee | |
2007-06-13 | Fix compiler warning (pointer arithmetic). | Albert Lee | |
2007-06-13 | Clean up solaris PTHREAD_CFLAGS/PTHREAD_LIBS | Ben Taylor | |
2007-06-13 | Fix leak on vorbis decoder as reported by Sander Jansen. | Diego 'Flameeyes' Pettenò | |
2007-06-13 | Fix stupid mistake. | Diego 'Flameeyes' Pettenò | |
2007-06-13 | Backport the memmem() replacement from 1.2 series. | Diego 'Flameeyes' Pettenò | |
2007-06-10 | Added Solaris support for gcc and studio to pthreads.m4 | Ben Taylor | |
2007-06-10 | Update version information. | Diego 'Flameeyes' Pettenò | |
2007-06-10 | Backport last.fm support to 1.1 branch. | Diego 'Flameeyes' Pettenò | |
2007-06-09 | Add $(LTLIBINTL) for a few plugins which I'd missed. | Darren Salt | |
2007-06-09 | Use $(LTLIBICONV) instead of $(LIBICONV) when linking libxine.so. | Darren Salt | |
2007-06-09 | Use $(LTLIBICONV) instead of @LIBICONV@. | Darren Salt | |
2007-06-09 | Add $(LTLIBICONV) wherever objdump -R shows a dependency on iconv functions. | Darren Salt | |
Some plugins may have been missed due to them not being built here. | |||
2007-06-09 | Add $(LTLIBINTL) wherever objdump -R shows a dependency on gettext functions. | Darren Salt | |
Some plugins may have been missed due to them not being built here. | |||
2007-06-08 | Enable the wavpack plugin. | Darren Salt | |
2007-06-08 | Added $(LTLIBINTL) to several targets | Ben Taylor | |
2007-06-08 | Add two missing alloca.h includes and clean up one other. | Darren Salt | |
2007-06-08 | Protect attribute declarations against, e.g., random printf redefinitions. | Darren Salt | |
2007-06-08 | Fix build issues on systems which need our internal asprintf. | Darren Salt | |
config.h is now include/configure.h and no longer #includes os_internals.h. A new file, include/config.h, #includes both; this breaks a #include loop. Other files are updated accordingly. | |||
2007-06-07 | Signature for 1.1.7. | Darren Salt | |
2007-06-07 | Release tag for 1.1.7. | Darren Salt | |
2007-06-07 | 1.1.7.xine-lib-1_1_7-release1.1.7 | Darren Salt | |
2007-06-06 | Fix RealPlayer codec detection and a nearby logging build failure. Both typos. | Darren Salt | |
2007-06-06 | Clean up .tar.bz2 as well as .tar.gz. | Darren Salt | |
2007-06-06 | Changelog entry for the fb colour conversion crash fix. | Darren Salt | |
2007-06-06 | [PATCH] video_out_fb crash | Steve Freeland | |
I discovered some problems with the framebuffer output driver. The first problem I had was a segfault when trying to play a 480x360 clip on a 640x480 display. I traced it to the yuv420_rgb16() color conversion function, which was overrunning the input buffer (the "y" part of the image). The reason was that it was being called downstack from fb_frame_proc_slice(), multiple times for each 16-pixel high horizontal slice of the image. When it got to the last slice, only 8 pixels were left to the bottom but it still tried to process a 16-pixel high slice. Nosing around a bit, I compared the configuration of the color converter as used by the fb driver to the xshm driver and found some oddities: 1) The color converter was configured with a "source height" of 16 pixels no matter what the size of the image, and a "dest height" based on what was referred to within video_out_fb.c as a "stripe" -- essentially an input slice scaled up or down as required by the output size. 2) Apparently to prevent the above from causing problems, the position in the output buffer was managed by special code -- see the "stripe_incr" variable. 3) The xshm driver calls yuv2rgb_next_slice() with a NULL argument at the beginning of each frame to allow the color converter to reset its tracking of the slice-by-slice progress through the image; the fb driver does not. I'm not sure exactly why it was done that way, but my best guess would be that whoever coded it didn't know about the need to call yuv2rgb_next_slice() with a NULL argument, and the rest was built up to get it to mostly work without that. The attached patch changes the behaviour to match that of the xshm driver, and also removes the reset_dest_pointers() function, replacing its single invocation with one to fb_frame_field(), which is identical after removing the "stripe" management. It fixed my crash. Can anyone see if I've misunderstood what was going on? If not, it should probably be applied to the official version. | |||
2007-06-05 | Silence an ignored error when running "debuild clean". | Darren Salt | |
2007-06-05 | Disable aRTs output plugin by default, it's deprecated and will be removed ↵ | Diego 'Flameeyes' Pettenò | |
in 1.2 series. | |||
2007-06-04 | Changelog entry for the unplug code | Matthias Kretz | |
2007-06-04 | fallback to none output when the device is unplugged | Matthias Kretz | |
2007-06-04 | handle unplugged devices in audio_alsa_out (return -1) and in audio_out ↵ | Matthias Kretz | |
close the driver on a return value <0 |