summaryrefslogtreecommitdiff
path: root/src/libsputext
AgeCommit message (Collapse)Author
2004-12-22calling update_output_size() right before actually showing the subtitleMichael Roitzsch
will fix problems, when the size of the output area changed between the initial call and the drawing (which might be in the magnitude of seconds or minutes caused by _x_spu_decoder_sleep(), especially when using separate text subtitles); this caused the first subtitle to be missing sometimes, because users would switch to fullscreen after starting playback also fix missing first subtitle after seeking (reset of decoders tate was incomplete) CVS patchset: 7294 CVS date: 2004/12/22 21:29:25
2004-12-17fix crash in sputext demuxer when subtitles have too many linesMichael Roitzsch
(closes bug #1086775) CVS patchset: 7267 CVS date: 2004/12/17 13:38:23
2004-12-12huge patch ahead: reorganizing config entries with automatic conversionMichael Roitzsch
and backwards compatible translation Sorry, I got a litte tired proof-reading the patch, so their might be bugs lurking around. I will give it some further examination and (as necessary) fixing tomorrow. CVS patchset: 7233 CVS date: 2004/12/12 22:00:47
2004-11-03fix compiler warningMichael Roitzsch
CVS patchset: 7102 CVS date: 2004/11/03 19:17:54
2004-10-30misplaced }Miguel Freitas
CVS patchset: 7091 CVS date: 2004/10/30 14:29:23
2004-10-27Sylvain Colinet patchMiguel Freitas
CVS patchset: 7081 CVS date: 2004/10/27 22:22:25
2004-08-27generic mechanism for specifying subtitles encoding at demuxer levelMiguel Freitas
fixes problems with matroska utf-8 subtitles CVS patchset: 6911 CVS date: 2004/08/27 21:07:31
2004-07-27from the docs of sprintf: "when the strings overlap, the behaviour is undefined"Michael Roitzsch
(actually it works with glibc and sprintf, but not with snprintf) CVS patchset: 6859 CVS date: 2004/07/27 18:06:45
2004-07-22* font name stored in an unprotected buffer, configuring a long font nameMichael Roitzsch
would have caused an overflow * using strncpy is good, but if the buffer is too short, it leaves the string unterminated; fixed CVS patchset: 6834 CVS date: 2004/07/22 14:21:31
2004-07-22* do not use strcpy with overlapping strings, the behaviour is undefinedMichael Roitzsch
* fixed lots of unprotected buffers, overlong subtitle lines would have caused overflows CVS patchset: 6833 CVS date: 2004/07/22 14:19:12
2004-07-14 - Use Windows encoding for the external subtitles, guessed according to ↵František Dvořák
current locale. - Add "-" into encoding names. - Fix a typo. CVS patchset: 6793 CVS date: 2004/07/14 18:51:29
2004-06-13implement steps 1, 2, 3 and 4 of the seeking proposal:Miguel Freitas
http://article.gmane.org/gmane.comp.video.xine.devel/9532 it is now up to demuxers to decide what the 0..65535 position means. demuxers tested: ogg, voc, flac, rm, asf, vqa, vob, avi, y4m, au, mov, ts, mp3, mpg, wav, ra, mve CVS patchset: 6686 CVS date: 2004/06/13 21:28:52
2004-06-11Patch with improvements for libsputext from Vincent Pelletier - word wrap ↵František Dvořák
and enhanced subtitle parser. CVS patchset: 6673 CVS date: 2004/06/11 09:47:29
2004-06-04sputext decoder relied on status() with stream==NULL, which is wrong nowMichael Roitzsch
CVS patchset: 6638 CVS date: 2004/06/04 14:37:33
2004-04-26help strings added for all remaining config entries (so I hope)Michael Roitzsch
please everybody watch out for spelling (and other) errors CVS patchset: 6442 CVS date: 2004/04/26 17:50:06
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-03-13since the real fix would require changes to critical parts of the engineMichael Roitzsch
(although no severe changes), I decided to commit an interim fix to prevent any breakage before the release CVS patchset: 6246 CVS date: 2004/03/13 13:59:19
2004-02-29Various compilation fixes and updates:František Dvořák
- xine compilable without iconv (scream if I something broke) - update MSVC port, fixes in avi demux - add iff.h into makefiles - ffmpeg depends on zlib (build was OK only when freetype was installed) - commit a patch for goom CVS patchset: 6192 CVS date: 2004/02/29 17:26:45
2004-02-16this file is not needed any more, the OGM subtitle decoder has been mergedMichael Roitzsch
into xine_decoder.c CVS patchset: 6163 CVS date: 2004/02/16 16:02:14
2004-02-15ignoring empty spus created by some ogm-muxingtoolsAndreas Heinchen
CVS patchset: 6160 CVS date: 2004/02/15 18:52:42
2004-02-03Fix a bug introduced by my last commit.Thibaut Mattern
Always update font size/offset when the output size change. CVS patchset: 6111 CVS date: 2004/02/03 11:12:18
2004-01-22Try to fix buffer overflow problems.Thibaut Mattern
Little optimization in the "erase" code. CVS patchset: 6056 CVS date: 2004/01/22 00:36:50
2004-01-12it seems i forgot to commit the api increase (demux/decoder). weird.Miguel Freitas
CVS patchset: 6030 CVS date: 2004/01/12 17:35:14
2004-01-02fix possible deadlock with ogm subtitlesMiguel Freitas
CVS patchset: 5973 CVS date: 2004/01/02 19:03:46
2003-12-30easier debugging with --verboseMiguel Freitas
CVS patchset: 5962 CVS date: 2003/12/30 02:16:43
2003-12-24* patch by David Gómez to support linebreaking '|' in subview formatMichael Roitzsch
* fix compiler warnings CVS patchset: 5947 CVS date: 2003/12/24 17:34:49
2003-12-17 * Default subtitle timeout.František Dvořák
Some formats define the end of a subtitle as the beginning of the following. But using configurable timeout seems better. * Three new formats of subtitles: - jacobsub from mplayer (not tested by me) - subviewer v2.0 from mplayer (not tested by me) - subrip v0.9 * Change deprecated bzero() to memset() CVS patchset: 5918 CVS date: 2003/12/17 13:41:05
2003-12-14API version bounceSiggi Langauf
CVS patchset: 5912 CVS date: 2003/12/14 22:13:22
2003-12-05cleanup phase II. use xprintf when it's relevant, use xine_xmalloc when it's ↵Daniel Caujolle-Bert
relevant too. Small other little fix (can't remember). Change few internal function prototype because it xine_t pointer need to be used if some xine's internal sections. NOTE: libdvd{nav,read} is still too noisy, i will take a look to made it quit, without invasive changes. To be continued... CVS patchset: 5844 CVS date: 2003/12/05 15:54:56
2003-12-04sputext now handles ogm subtitlesMiguel Freitas
less redundant code, more maintainable CVS patchset: 5833 CVS date: 2003/12/04 03:23:28
2003-12-04rework sputext. avoid using seek_count internal engine variable,Miguel Freitas
honor vo discard frames to also discard the subtitles. it should be more reliable now, and also faster on seeking. CVS patchset: 5832 CVS date: 2003/12/04 02:23:49
2003-11-26lprintf cleanup, pass I.Daniel Caujolle-Bert
CVS patchset: 5796 CVS date: 2003/11/26 19:43:26
2003-11-26* new unscaled overlay feature (using XShape extension)Miguel Freitas
text subtitles may now be rendered at full screen resolution * load xine fonts on demand - faster startup note: support added to xv, xshm and vidix CVS patchset: 5780 CVS date: 2003/11/26 01:03:31
2003-11-16New stream/meta info (safe) stuff.Daniel Caujolle-Bert
BIG NOTE: use helpers to access to these informations (get/set/reset): _x_{stream,meta}_info_{get,set,reset}() are for internal use, don't use *_public() ones from inside the beast ;-) Some wrongly names "xine_" fonction renaming. CVS patchset: 5757 CVS date: 2003/11/16 23:33:42
2003-11-15start xine_stream_t separation (public/private).Miguel Freitas
(we should finish this before rc3.) - stream_info and meta_info variables are private now. obs: everything must be recompiled due xine_stream_t changes CVS patchset: 5733 CVS date: 2003/11/15 14:54:30
2003-11-15more helper functions cleanup (stream info, meta info)Miguel Freitas
CVS patchset: 5731 CVS date: 2003/11/15 13:01:00
2003-11-11this wasn't intended to be commited.Daniel Caujolle-Bert
CVS patchset: 5723 CVS date: 2003/11/11 21:20:38
2003-11-11rename internal API function (_x_<function>).Daniel Caujolle-Bert
CVS patchset: 5721 CVS date: 2003/11/11 18:44:50
2003-11-04remove errno usage (all input plugins should handle and report errors). Take ↵Daniel Caujolle-Bert
care of seek() return value. CVS patchset: 5684 CVS date: 2003/11/04 00:24:52
2003-11-03take care of read() return value. use xprintf/lprintf. fix get_extensions()Daniel Caujolle-Bert
CVS patchset: 5683 CVS date: 2003/11/03 23:58:18
2003-10-23I should have seen this coming...Michael Roitzsch
The changes to the video API of course require the video/spu decoder and post plugin APIs to be increased as well. CVS patchset: 5579 CVS date: 2003/10/23 20:12:33
2003-10-13Fix ssa handling. Fix ssa parsing by syncing to MPlayer.Daniel Caujolle-Bert
CVS patchset: 5501 CVS date: 2003/10/13 06:57:28
2003-09-18Adjust size of subtitle font ONLY according to get_text_size(),František Dvořák
which right handles multibyte strings. (current xine CVS adjusted size also before computing text size) Possibility to select the smallest font too. CVS patchset: 5403 CVS date: 2003/09/18 18:17:12
2003-09-18Generating codepages with more than 256 characters (max. 16-bit).František Dvořák
Right computing text size of multibyte texts in OSD. Different alias character for missing character in the conversion and in the font: #, _ CVS patchset: 5402 CVS date: 2003/09/18 18:14:50
2003-08-29Don't skip the last subtitle lineMarco Zuehlke
CVS patchset: 5316 CVS date: 2003/08/29 11:44:53
2003-08-24fix sami sub title detectionDaniel Caujolle-Bert
CVS patchset: 5303 CVS date: 2003/08/24 10:17:43
2003-08-04fixes suggested by Octavian Procopiuc <op1@duke.edu>Miguel Freitas
CVS patchset: 5242 CVS date: 2003/08/04 03:16:48
2003-08-04seek to start before detecting contentMiguel Freitas
not sure this is need, but it must be harmless :) patch by Marc Bevand CVS patchset: 5235 CVS date: 2003/08/04 01:37:58
2003-07-25small housekeeping: demuxer api seeks in milisecondsMiguel Freitas
CVS patchset: 5211 CVS date: 2003/07/25 21:02:04
2003-07-12btw, reduce prebuffer so settings take effect fasterMiguel Freitas
CVS patchset: 5152 CVS date: 2003/07/12 17:04:36