summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2004-04-09network cd playback works againMiguel Freitas
CVS patchset: 6369 CVS date: 2004/04/09 22:18:35
2004-04-09receiving data from network is kind of critical, we better be carefulMiguel Freitas
about buffer overruns. CVS patchset: 6368 CVS date: 2004/04/09 22:12:09
2004-04-09accept unix LF as line termination (don't try to read another char)Miguel Freitas
CVS patchset: 6367 CVS date: 2004/04/09 21:46:54
2004-04-09fix playing LPCM (tag preview pack) - fix Fever.vobMiguel Freitas
CVS patchset: 6365 CVS date: 2004/04/09 16:07:10
2004-04-09on FreeBSD alpha, sys/types.h is needed before machine/param.hMichael Roitzsch
patch by Klaus Robert Suetterlin <robert@mpe.mpg.de> CVS patchset: 6364 CVS date: 2004/04/09 15:29:33
2004-04-09improving precision of audio vpts calculation, the comment in metronom.c ↵Michael Roitzsch
explains CVS patchset: 6363 CVS date: 2004/04/09 15:06:02
2004-04-09porting the rudimentary NAV timestamp handling from DXR3 SPU decoder makesMichael Roitzsch
the menu of "24" season 1 work correctly with software decoding; thanks to Bob "GnomeKing" for doing all the testing CVS patchset: 6362 CVS date: 2004/04/09 15:01:29
2004-04-09including libdts as experimental DTS decoderMichael Roitzsch
(xine wrapper code by James Stembridge) does not work on all DVDs, but better a sometimes failing decoder than no decoder at all; digital passthrough seems unaffected CVS patchset: 6361 CVS date: 2004/04/09 14:57:25
2004-04-09fix compiler warning (missing prototype)Michael Roitzsch
CVS patchset: 6359 CVS date: 2004/04/09 14:31:28
2004-04-09made GCC happyDaniel Caujolle-Bert
CVS patchset: 6358 CVS date: 2004/04/09 11:48:13
2004-04-09move ticket init to xine_init(), clean it up. Move streams mutex init to ↵Daniel Caujolle-Bert
xine_init(). CVS patchset: 6357 CVS date: 2004/04/09 11:26:10
2004-04-09tvtime deinterlacing algorithms assumed top_field_first=1Miguel Freitas
top_field_first=0 (aka bottom_field_first) should now work as expected CVS patchset: 6356 CVS date: 2004/04/09 02:57:05
2004-04-09small fix for heiko's avi streamsGuenter Bartsch
CVS patchset: 6355 CVS date: 2004/04/09 01:56:11
2004-04-08lib order matters for static linkingMiguel Freitas
CVS patchset: 6353 CVS date: 2004/04/08 19:00:25
2004-04-08avoid big dirty crash when xine_exit() is called without xine_init() first ↵Daniel Caujolle-Bert
(use toxine luke... ;-) ) CVS patchset: 6351 CVS date: 2004/04/08 16:20:14
2004-04-08make that a define to improve maintainabilityxine_1-rc3c-release1-rc3cMichael Roitzsch
CVS patchset: 6350 CVS date: 2004/04/08 13:37:54
2004-04-08Degrease jerking with OGM subtitles.František Dvořák
CVS patchset: 6348 CVS date: 2004/04/08 11:10:10
2004-04-07fix compiler warningsMichael Roitzsch
CVS patchset: 6345 CVS date: 2004/04/07 19:44:29
2004-04-07+\nPhilipp Hahn
CVS patchset: 6344 CVS date: 2004/04/07 19:35:38
2004-04-07Michael's patch for improving playback with subtitles, fix the long seeking.František Dvořák
CVS patchset: 6342 CVS date: 2004/04/07 18:10:20
2004-04-07the patch to audio_out from 1.128 to 1.129 changed a calculation fromMichael Roitzsch
x = a / b + c to y = b + c x = a / y which is wrong and breaks the resampling sync method; changing to y = a / b x = y + c should fix; thanks to Carsten Weinhold for the patch CVS patchset: 6341 CVS date: 2004/04/07 18:07:25
2004-04-06Prepare for MinGW port:František Dvořák
move M$VC specific header files into sparate directory regenerate config.h for M$VC compilation fixes add some getchar()s into xineui.exe (popup dialogs would be better) CVS patchset: 6338 CVS date: 2004/04/06 19:20:15
2004-04-06Patch for using timeout in cddb lookup (xine was freezed just because of ↵František Dvořák
firewall!!!). New functions into io_helper: _x_io_tcp_connect_finish ... wait for successful connect with timeout _x_io_tcp_read_line ... read the string from the socket (improvements neded) Use io_helper functions in input_cdda. Don't try connect again to freedb server, if previous connecting was failed. CVS patchset: 6337 CVS date: 2004/04/06 18:40:32
2004-04-06comment #define LOGThibaut Mattern
CVS patchset: 6336 CVS date: 2004/04/06 06:45:47
2004-04-06Use 64 bits to compute current pos.Thibaut Mattern
CVS patchset: 6335 CVS date: 2004/04/06 06:43:05
2004-04-06Asf demuxer:Thibaut Mattern
- fix error correction handling. - detect properly the end of the stream using packet_count (now that mms plugin handles correctly current_pos). - rename some properties mmst/mmsh: - handle current stream pos correctly, based on packet sequence_id (needed for seeking). mmsh: - some reverse ingeneering to support for grouped ASF streams like mmst (mmsh://wms03.nordicwebradio.com/chelsea) - fix a potential crash at the end of stream CVS patchset: 6334 CVS date: 2004/04/06 00:25:29
2004-04-05- add XINE_MSG_AUDIO_OUT_UNAVAILABLE event to warn when the audio device isBastien Nocera
busy. CVS patchset: 6333 CVS date: 2004/04/05 20:01:24
2004-04-05another int used to store a pointer, which breaks AMD64;Michael Roitzsch
thanks once again to Adrian Schroeter from SuSE for spotting this CVS patchset: 6332 CVS date: 2004/04/05 19:31:35
2004-04-05- allow mounted DVDs to be played back on Linux 2.6, fix a free() on a ↵Bastien Nocera
static string in the VCD plugin CVS patchset: 6330 CVS date: 2004/04/05 18:01:09
2004-04-05- remove stream from the streams list when it is disposedBastien Nocera
CVS patchset: 6329 CVS date: 2004/04/05 17:58:54
2004-04-04Fix "1e" command handling.Thibaut Mattern
CVS patchset: 6328 CVS date: 2004/04/04 12:19:06
2004-04-03Fix live detection.Thibaut Mattern
This radio plays now. It used to play well, i don't know when they changed the server. mmst://wms03.nordicwebradio.com/chelsea CVS patchset: 6327 CVS date: 2004/04/03 18:34:53
2004-04-02- split payload header parsing.Thibaut Mattern
- rename payload parsing function. CVS patchset: 6326 CVS date: 2004/04/02 06:52:39
2004-03-31pan&scan support for the letterboxed overlay modeMichael Roitzsch
CVS patchset: 6325 CVS date: 2004/03/31 16:18:55
2004-03-31poor-man's version of handling NAV presentation timestampsMichael Roitzsch
(first DVD of "24" season 1 should work with the DXR3 now) CVS patchset: 6324 CVS date: 2004/03/31 16:18:16
2004-03-31multi-default selections work modulo some bugs. But it requires a newerRocky Bernstein
vcdimager (0.7.21 that is only CVS right now). Use the newer vcdinfo routines if available. CVS patchset: 6323 CVS date: 2004/03/31 10:13:00
2004-03-31New config option - list of domains without proxy.František Dvořák
Add help strings into HTTP proxy options. CVS patchset: 6322 CVS date: 2004/03/31 07:42:49
2004-03-30bugfix for ogms larger than 2 GB - thanks to Andrew de QuinceyAndreas Heinchen
CVS patchset: 6319 CVS date: 2004/03/30 20:44:14
2004-03-29destroy the mutexes properlyMichael Roitzsch
CVS patchset: 6318 CVS date: 2004/03/29 19:50:58
2004-03-29remove unused variableMichael Roitzsch
CVS patchset: 6317 CVS date: 2004/03/29 19:11:30
2004-03-29fix prototypeMichael Roitzsch
CVS patchset: 6316 CVS date: 2004/03/29 19:10:36
2004-03-28the anti-yoyo hack is still needed.Thibaut Mattern
CVS patchset: 6315 CVS date: 2004/03/28 20:58:06
2004-03-28Fix asx ENTRYREF parsing.Thibaut Mattern
Patch from Koos Vriezen. CVS patchset: 6314 CVS date: 2004/03/28 20:00:46
2004-03-28this needs to be an irrevocable ticketMichael Roitzsch
CVS patchset: 6313 CVS date: 2004/03/28 19:56:08
2004-03-28move the ticket acquire/release deeper inside the decoder loopsMichael Roitzsch
(buf->free_buffer() for example must not be called with a ticket held, since it can block, when the demuxer triggered nbc, which will occupy the fifo lock) CVS patchset: 6312 CVS date: 2004/03/28 19:51:56
2004-03-28Fix recovery from corrupt video streamJames Stembridge
CVS patchset: 6311 CVS date: 2004/03/28 19:11:32
2004-03-28- new logic evaluate engine latency.Thibaut Mattern
try to evaluate the amount of data inside decoders, audio decoders tends to keep a lot, and that's why the audio fifo keeps empty. This remove the "50%" step with video trailers, and the playback starts earlier. - fix a potential deadlock at exit. - increase high watermark if rebuffering I've tested with asf/mpeg/mov/real streams. CVS patchset: 6310 CVS date: 2004/03/28 18:17:34
2004-03-27"+y"+p code from xine-ui for guessing locale codeset (default encoding for OSD).František Dvořák
CVS patchset: 6309 CVS date: 2004/03/27 12:59:45
2004-03-26Fix mutex "leak".František Dvořák
CVS patchset: 6308 CVS date: 2004/03/26 12:30:04
2004-03-24valgrind-caught memleak.Rocky Bernstein
CVS patchset: 6307 CVS date: 2004/03/24 04:25:06