Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-26 | Correct another color→colour change to a struct member name. | Darren Salt | |
2007-12-26 | Correct a color→colour change to a struct member name. | Darren Salt | |
2007-12-26 | Fix pls parsing (broken in cset e0819c1c624a). | Darren Salt | |
(transplanted from c139cfe735874922208d936c8e49bbfa532ed2ec) --HG-- extra : transplant_source : %C19%CF%E75%87I%22%20%8D%93l%8EI%BB%FAS.%D2%EC | |||
2007-12-24 | Consistently use "colour", "colour key", "colour space" in output. | Darren Salt | |
Some instances of "key colour" remain; ffmpeg is unmodified. This change has caused two strings with two translations to collide (the strings have become identical since some instances already used "colour"). I have therefore arbitrarily dropped the first of the differing translations, the one for the string at src/video_out/video_out_directfb.c:1365. | |||
2007-12-24 | Spelling correction: successfuly → successfully. | Darren Salt | |
2007-12-24 | Update Italian translation. | Diego 'Flameeyes' Pettenò | |
2007-12-24 | Regenerate translations, so that the translators find the data updated. | Diego 'Flameeyes' Pettenò | |
2007-12-22 | Always enable a52dec capabilities for external a52dec. | Diego 'Flameeyes' Pettenò | |
This make it possible to use the DJB accelerated FFT when using the external a52dec liba52 library. --HG-- extra : transplant_source : %03Y%0F%8C%F0%05%EE%F7%5E%2B%A9u%7D%96%F8%D2%13%CD%F4%9D | |||
2007-12-18 | Don't treat # in MRLs as literals or URI-decode raw filenames. [Bug 1784272] | Darren Salt | |
2007-12-17 | compile | Matthias Kretz | |
2007-12-17 | add video/flv and application/x-flash-video MIME aliases as used by shared-mime | Matthias Kretz | |
2007-12-17 | Fix an off-by-one error concerning UTF-8-encoded BOMs. | Darren Salt | |
2007-12-16 | Tell the Real demuxer about http references. | Darren Salt | |
2007-12-14 | Convert XML to UTF-8 for parsing if a BOM is detected. | Darren Salt | |
2007-12-13 | Set stream information only when reading a streaminfo FLAC block. | Diego 'Flameeyes' Pettenò | |
(transplanted from 6d9f36be48839984c3888f3d803319942c4d76e6) --HG-- extra : transplant_source : E%81r%E5-%5B%C2%21%15h%E3_%CB%23%25%9B%01l%03Y | |||
2007-12-13 | If the number of channels is not in the known cases, return a failure. | Diego 'Flameeyes' Pettenò | |
(transplanted from f3d84191da5d930ac90193bbdc0ca5d7c43b8302) --HG-- extra : transplant_source : D%837c_%7D%89%F0%E3%2B%7C%96%85IM9%250D%ED | |||
2007-12-14 | Fixed a crash that happened when a video output was closed | Matthias Kretz | |
img->stream->video_fifo can be 0 | |||
2007-12-13 | Free the temporary variables that are allocated, avoid memory leaks. | Diego 'Flameeyes' Pettenò | |
(transplanted from c994a2508893efc4c85f5b49600b7dceec5c890e) --HG-- extra : transplant_source : %C9%94%A2P%88%93%EF%C4%C8_%5BI%60%0B%7D%CE%EC%5C%89%0E | |||
2007-12-10 | Simplify Pulse plugin reverting some of today's changes and going back from ↵ | Diego 'Flameeyes' Pettenò | |
there. Instead of using a thread to watch for completion, use mutexes where needed. Don't wait for operation completion for volume changes, they can happen asynchronously too. | |||
2007-12-10 | Backport the PulseAudio plugin from 1.2 branch. | Diego 'Flameeyes' Pettenò | |
2007-12-09 | Mark libxine1 as providing the libxine1-* packages which it replaces. | Darren Salt | |
2007-12-09 | Enable the WMV VC1 (ffmpeg) codec. | Darren Salt | |
--HG-- extra : transplant_source : %15%CD%0B%2C%F2g%03%B9%25%D4%B2%8BQ%1F%EB%BB%8F%28%9B%C8 | |||
2007-12-08 | spudvb osd update fix | Christophe Thommeret | |
- Allow visible region updates. - Resize OSD at drawing time. --HG-- extra : transplant_source : %17%ECZ%D0j%2C%BC%06%7CO%3A%F0%C7u%A3%86%DE%8Bb%D3 | |||
2007-12-07 | Don't try to free the frame if it's not allocated. Fixes bug FS#3. | Diego 'Flameeyes' Pettenò | |
2007-12-07 | Fix compilation of DXR3 support with external ffmpeg. Untested with actual DXR3. | Darren Salt | |
Compilation was "broken" by ffmpeg rev. 9283. | |||
2007-12-04 | fifo_peek_int can return NULL (when non-blocking). make fifo_remove_int ↵ | Matthias Kretz | |
handle that case | |||
2007-12-03 | Fixed a race condition between ao_loop and ao_close to not lose the last buffer. | Matthias Kretz | |
In ao_loop only read the first buffer and remove it from the fifo only when the buffer has been written or is about to be discarded. This fixes the race between ao_loop and ao_close for good. Now fifo_remove_int may signal empty again right after removing the last buffer from the fifo. | |||
2007-12-02 | silence stdout of ogg demuxer | Matthias Kretz | |
2007-12-02 | Don't signal fifo->empty right after reading the last buffer | Matthias Kretz | |
but only when a read was requested and the fifo is empty. Rationale: ao_close uses fifo_wait_empty to make sure all buffers were written to the driver before it calls close on the driver. But if empty is already signaled when ao_loop just reads the next buffer then ao_close might close the driver before ao_loop has a chance to send the buffer to the driver. | |||
2007-12-02 | remove redundant check | Matthias Kretz | |
buf must be != NULL because of the while(!fifo->first) before and the buf->next after | |||
2007-12-02 | Fixed ALSA close function to not discard all data that had been written but ↵ | Matthias Kretz | |
not played yet. When closing the pcm device make sure that everything that was written to the device actually gets played. This was the race we were seeing with Ogg Vorbis and wav playback where a delayed driver->close would fix playback. Notice that blocking mode needs to be used for snd_pcm_drain, otherwise the call would be a noop. | |||
2007-12-03 | ChangeLog entries for my patches | Matthias Kretz | |
2007-11-30 | Remove pointless "several MRLs" text; move that paragraph up a bit. | Darren Salt | |
2007-11-25 | * change the maintainer field to xine-devel@lists.sourceforge.net. | Reinhard Tartler | |
2007-11-25 | * remove gs from build-dependencies | Reinhard Tartler | |
2007-11-25 | Fix a signedness issue in genre number validation. | Darren Salt | |
Negative values would be accepted, resulting in junk in XINE_META_INFO_GENRE or a segfault. | |||
2007-11-25 | Avoid any future need to alter ID3_GENRE_COUNT. | Darren Salt | |
2007-11-25 | patch adding additional ID3 genres | Maximilian Schwerin | |
2007-11-24 | Add option to disable Nosefart/NSF plugin building. | Diego 'Flameeyes' Pettenò | |
This way you can get a safer build for binary redistribution. | |||
2007-11-23 | Merge. | Darren Salt | |
2007-11-23 | fix one warning; remove unused variable; make float->int conversion a bit ↵ | Matthias Kretz | |
more accurate (compared to oggdec); fix one debug printf | |||
2007-11-23 | log if send_headers returned with DEMUX_FINISHED | Matthias Kretz | |
2007-11-23 | fix read_ogg_packet to really read all of the data; don't go into ↵ | Matthias Kretz | |
DEMUX_FINISHED from send_header | |||
2007-11-19 | add support for GNU/kFreeBSD | Petr Salinger ext:(%20) | |
It changes some "defined (__FreeBSD__)" into "defined (__FreeBSD_kernel__)" and "__FreeBSD_version" into "__FreeBSD_kernel_version". The changes are performed on places, where feature of kernel is tested. On some other places, feature of userland/libc is tested, on them "defined (__FreeBSD__)" remains. As proposed, include/configure.h cause __FreeBSD_kernel__ be defined if __FreeBSD__ is defined. --HG-- extra : transplant_source : %25%96K%05%E4Y%B15%94%60%15%FE1%8Ah%26Xy%8C/ | |||
2007-11-20 | Mark the PPC asm memcpy() implementations as hidden symbols. | Diego 'Flameeyes' Pettenò | |
2007-11-18 | Get filesize from metadata, when available. | Claudio Ciccani | |
2007-11-18 | Implemented a faster method to seek to absolute position (seek+resync). | Claudio Ciccani | |
Fixed interpretation of "videodatarate" variable. Export audio bitrate information when variable "audiodatarate" is found. | |||
2007-11-17 | Send headers using script information as reference (when available). | Claudio Ciccani | |
That should prevent xine from discarding the first keyframe on non-seekable stream. | |||
2007-11-17 | Include epoch in libxv-dev version info. Apparently fixes build on etch. | Darren Salt | |
2007-11-15 | using select instead of nanosleep the wakeup count reported by powertop is ↵ | Matthias Kretz | |
reduced by 50% |