summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Warn about vo_gl scaled-osd broken with -assreimar2006-10-291-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20514 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix width -> orig_width typo.eugeni2006-10-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20513 b3059339-0415-0410-9bf9-f77b7e298cf2
* Don't set PlayResX for plaintext subtitles.eugeni2006-10-291-1/+0
| | | | | | | This way font proportions will not depend on frame aspect. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20512 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add \N at the end of each subtitle line when converting from subdata.eugeni2006-10-291-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20511 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure we do not read beyond end of subtitle packetreimar2006-10-291-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20510 b3059339-0415-0410-9bf9-f77b7e298cf2
* realloc subtitle buffers since subcp_recode might have decreased their size.reimar2006-10-291-10/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20509 b3059339-0415-0410-9bf9-f77b7e298cf2
* Quick hack to implement percent-based seeking, also fixes seeking with gmplayerreimar2006-10-291-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20508 b3059339-0415-0410-9bf9-f77b7e298cf2
* Factor out common cdda stuff from cdio and cdparanoia tests.reimar2006-10-291-7/+7
| | | | | | | Also fixes configure showing cdda as both en- and disabled with libcdio. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20507 b3059339-0415-0410-9bf9-f77b7e298cf2
* handle broken ts packets before parsing the restnicodvb2006-10-291-23/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20506 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support new flac-in-ogg, fixes bug #229reimar2006-10-291-0/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20505 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: reformatted after previous commitnicodvb2006-10-291-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20504 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1000l: fixed broken handling of the adaption field - part 2nicodvb2006-10-291-1/+11
| | | | | | | | The value of c must be between 0 and 183 inclusive; is c is 0 I can't skip c-1 bytes! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20503 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed mishandling of stream_read() (it doesn't necessarily return -1 in case ↵nicodvb2006-10-291-3/+3
| | | | | | of error) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20502 b3059339-0415-0410-9bf9-f77b7e298cf2
* ts_parse() move section handling after stream_read() rather than repeating itnicodvb2006-10-291-49/+41
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20501 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some <application> tags.diego2006-10-291-3/+4
| | | | | | | patch by Andrew Savchenko, Bircoph list ru git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20500 b3059339-0415-0410-9bf9-f77b7e298cf2
* Always initialize and destroy ass_library.eugeni2006-10-291-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20499 b3059339-0415-0410-9bf9-f77b7e298cf2
* Always initialize libass to fix crashes caused by use without initialization.uau2006-10-291-1/+1
| | | | | | | | | | | | Library init was only done if ass_enabled was true at program startup. However there are at least 2 ways how MPlayer can later try to access the library even if ass_enabled is false at that point: - per-file options can turn on ass support later - if the embeddedfonts option is enabled and the file has fonts demux_mkv will call ass_process_font git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20498 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partially synced with en/mplayer.1 (3).kraymer2006-10-281-164/+359
| | | | | | | | Section "OSD/SUBTITLE OPTIONS" of zh/mplayer.1 updated. And some wordings. patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20497 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed useless check: when is_start is set the size of the payload nicodvb2006-10-281-6/+0
| | | | | | | can be at most 184 bytes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20496 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix some wordingskraymer2006-10-281-11/+10
| | | | | | | patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20495 b3059339-0415-0410-9bf9-f77b7e298cf2
* in ts_parse() centralized stream_read()+stream_skip(); smaller and cleanernicodvb2006-10-281-31/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20494 b3059339-0415-0410-9bf9-f77b7e298cf2
* Libass interface reworked:eugeni2006-10-2813-101/+261
| | | | | | | | | - ass_instance_t renamed to ass_renderer_t - ass_library_t introduced - use of mplayer-specific global variables limited to ass_mp.c git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20493 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20477: Add missing parenthesiskraymer2006-10-281-4/+4
| | | | | | | typo git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20492 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20440: Add ASS subtitle rendering options to gui.kraymer2006-10-281-1/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20491 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add svn versions for rc1rtogni2006-10-281-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20490 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cleanup/simplify nsv check_file function.reimar2006-10-281-22/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20489 b3059339-0415-0410-9bf9-f77b7e298cf2
* readability cosmeticsnicodvb2006-10-281-3/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20488 b3059339-0415-0410-9bf9-f77b7e298cf2
* unconditionally assign the language code when available;nicodvb2006-10-281-14/+13
| | | | | | | more simplifications git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20487 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better check for non-broken NSVf-header to avoid incorrect detection.reimar2006-10-281-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20486 b3059339-0415-0410-9bf9-f77b7e298cf2
* If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared bothreimar2006-10-281-5/+4
| | | | | | | extern and static, causing compilation to fail git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20485 b3059339-0415-0410-9bf9-f77b7e298cf2
* indentation fixods152006-10-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20484 b3059339-0415-0410-9bf9-f77b7e298cf2
* reformatted ts_parse() after previous commitnicodvb2006-10-281-34/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20483 b3059339-0415-0410-9bf9-f77b7e298cf2
* make vf_geq read whitespace in equation paramods152006-10-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20482 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed unreachable code (when len=pes_parse2() returns 0)nicodvb2006-10-281-25/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20481 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l: fixed misplaced adaption field checknicodvb2006-10-281-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20480 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed commented crc32 code; I'll eventualy reuse the one in lavunicodvb2006-10-281-16/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20479 b3059339-0415-0410-9bf9-f77b7e298cf2
* slight simplificationsnicodvb2006-10-281-19/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20478 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing parenthesis. Patch by Andrew Savchenko, Bircoph <at> list <dot> ru.corey2006-10-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20477 b3059339-0415-0410-9bf9-f77b7e298cf2
* clarify pts related stuffmichael2006-10-281-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20476 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial sync with en/mplayer.1 (2)kraymer2006-10-271-303/+611
| | | | | | | | | zh/mplayer.1 is mainly updated with section of "DEMUXER/STREAM OPTIONS" patch by Sheldon Jin (jinsh2 yahoo com) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20475 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add a note about charset configuration to the Apache section.diego2006-10-271-0/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20474 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove unused variableods152006-10-271-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20473 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic, reindentation, tab removalods152006-10-271-51/+51
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20472 b3059339-0415-0410-9bf9-f77b7e298cf2
* update vf_geq to new ff_eval APIods152006-10-271-38/+45
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20471 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, forgotten "no" for nouse-filedir-conf caused "-use-filedir-conf"reimar2006-10-271-1/+1
| | | | | | | option to have no effect. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20470 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20468Gabrov2006-10-272-63/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20469 b3059339-0415-0410-9bf9-f77b7e298cf2
* synced with r20445Gabrov2006-10-271-2/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20468 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing fontconfig_done() call.eugeni2006-10-271-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20467 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync with Debian package.diego2006-10-271-114/+155
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20466 b3059339-0415-0410-9bf9-f77b7e298cf2
* "-o -" -> use stdoutmichael2006-10-271-1/+4
| | | | | | | makes users of obscure OSs like window$ happy as they have no /dev/stdout git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20465 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add cmov detection to configureiive2006-10-271-0/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20464 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix translation inconsistencies, noticed by Torinthiel.voroshil2006-10-271-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20463 b3059339-0415-0410-9bf9-f77b7e298cf2
* Split ass_configure() into several smaller functions.eugeni2006-10-266-94/+127
| | | | | | | FontConfig initialization moved from ass_init() to ass_set_fonts(). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20462 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix a multitude of roff errors and warnings.diego2006-10-261-12/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20461 b3059339-0415-0410-9bf9-f77b7e298cf2
* various orthography and wording fixeskraymer2006-10-261-31/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20460 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20426: -chapter works with dvd:// and dvdnav://kraymer2006-10-261-2/+9
| | | | | | | r20445: finally document -correct-pts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20459 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20412: Fix some inconsistencies pointed out by Torinthiel.kraymer2006-10-265-102/+24
| | | | | | | | | | r20417: s/DarwinPorts/MacPorts/ r20419: Yet some more CVS->CVS r20442: Remove confusing and probably wrong paragraph about libdvdcss. r20449: Typo fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20458 b3059339-0415-0410-9bf9-f77b7e298cf2
* Improve translation of autogenerated labelstorinthiel2006-10-261-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20457 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clearly state that main.xml is generatedtorinthiel2006-10-261-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20456 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20341torinthiel2006-10-261-34/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20455 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync w/ r20440, patch by Sheldon Jingpoirier2006-10-261-1/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20454 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20379: Remove doubled -dvd-device information.voroshil2006-10-264-102/+30
| | | | | | | | | | | | | | | r20392: misc fixes. r20399: Remove bio2jack from list of required software. r20401: <replacable> tag aren't needed in literal example. r20412: Fix some inconsistences pointed out by Torinthiel. r20417: s/DarwinPorts/MaxPorts/ r20419: Yet more CVS->SVN. ... r20442: Remove confusing and probably wrong paragraph about libdvdcss. r20449: Typo fix. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20453 b3059339-0415-0410-9bf9-f77b7e298cf2
* Transtale a skipped titletorinthiel2006-10-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20452 b3059339-0415-0410-9bf9-f77b7e298cf2
* r20355: typovoroshil2006-10-261-1/+5
| | | | | | | | r20440: Add ASS subtitle rendering option to gui. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20451 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20449torinthiel2006-10-251-224/+53
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20450 b3059339-0415-0410-9bf9-f77b7e298cf2
* Typo fixtorinthiel2006-10-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20449 b3059339-0415-0410-9bf9-f77b7e298cf2
* add two missing checks - PATCH by Karolina Lindqvist AT kramnet-sereynaldo2006-10-251-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20448 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20442torinthiel2006-10-251-66/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20447 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partially synced with r20426, patch by S Jin jinsh2 A yahoo P comgpoirier2006-10-251-193/+808
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20446 b3059339-0415-0410-9bf9-f77b7e298cf2
* finally document -correct-ptsods152006-10-251-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20445 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix linking issue on PPC64 with 64bits userland, patch by Markus Rothe ↵gpoirier2006-10-251-0/+1
| | | | | | | | | | | markus A unixforces P net Original thread: Date: Oct 25, 2006 4:11 PM Subject: [MPlayer-dev-eng] [patch] compile issue on ppc64 (unresolved symbol) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20444 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync with upstream r201.diego2006-10-251-7/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20443 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove confusing and probably wrong paragraph about libdvdcss.diego2006-10-251-58/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20442 b3059339-0415-0410-9bf9-f77b7e298cf2
* Sync with upstream r201.diego2006-10-257-63/+184
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20441 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add ASS subtitle rendering options to gui.eugeni2006-10-257-0/+138
| | | | | | | Patch by Piotr Kaczuba <pepe at attika dot ath dot cx>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20440 b3059339-0415-0410-9bf9-f77b7e298cf2
* Microsync, just to keep documentation buildingtorinthiel2006-10-242-2/+305
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20439 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20412torinthiel2006-10-241-444/+109
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20438 b3059339-0415-0410-9bf9-f77b7e298cf2
* sync r20401torinthiel2006-10-241-9/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20437 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix single-black-pixel-in-upper-left-corner bug (how do people notice a singlereimar2006-10-24</