summaryrefslogtreecommitdiffstats
path: root/libass
Commit message (Expand)AuthorAgeFilesLines
* Fix \a parsing broken in r22291uau2007-02-231-1/+1
* Add some missing includes.eugeni2007-02-222-0/+4
* Oops, forgot {} before "else".eugeni2007-02-211-2/+2
* Cosmetics: fix indentation.eugeni2007-02-201-15/+15
* With \t(\b) text becomes bold at the middle of time interval, not at the endeugeni2007-02-201-1/+2
* Any style modifier followed by no recognizable parameter resets to the default.eugeni2007-02-201-7/+17
* \fn without an argument resets font family to the value from style.eugeni2007-02-201-3/+6
* Fix display order of events.eugeni2007-02-201-4/+0
* Both (-1) and 1 mean bold font in SSA/ASS styles.eugeni2007-02-192-4/+7
* Add \t(\b) support.eugeni2007-02-191-3/+4
* Fix bounding box calculation with \fscx/\fscy.eugeni2007-02-191-2/+4
* Fix \fscx/\fscy animation.eugeni2007-02-191-2/+2
* Correct implementation of text spacing.eugeni2007-02-193-10/+10
* Reallocate event_images_t, removing limit on simultanious events count.eugeni2007-02-191-23/+25
* Restore a minus sign that was lost in r22231.eugeni2007-02-161-1/+1
* Implement \frx and \fry (and reimplement \frz) as 3d rotations.eugeni2007-02-163-23/+108
* Consistently name z-axis rotation angle "frz".eugeni2007-02-162-6/+6
* Move conversions between 16.16, 26.6 fixed point and int, double to separateeugeni2007-02-162-17/+43
* Select the first charmap in the font, if FreeType did not autoselect any.eugeni2007-02-151-1/+11
* \r resets \frz to style value.eugeni2007-02-151-1/+1
* Fix \t(\frz) handling.eugeni2007-02-151-4/+2
* \org(0,0) is different from no \org at all.eugeni2007-02-151-1/+4
* Bugfix: glyph and bitmap pointers could be left uninitialized aftereugeni2007-01-291-4/+3
* Avoid invalid memory access in ass_process_subtitle for empty subtitlesreimar2007-01-071-1/+1
* Make -embeddedfonts enabled by default with FontConfig >= 2.4.2.eugeni2006-12-171-0/+8
* Update some comments.eugeni2006-12-172-6/+43
* Cosmetics: fix indentation.eugeni2006-12-161-15/+15
* Keep reselected fonts in an array, adding new ones to the end. Glypheugeni2006-12-163-28/+59
* Avoid storing font file path and index in ass_font_t.eugeni2006-12-162-14/+8
* Remove a mistakenly committed debug printf.eugeni2006-12-161-2/+0
* FT_Set_Transform is fast enough to be called once for each glyph.eugeni2006-12-161-15/+7
* Avoid "pointer targets differ in signedness" warnings.eugeni2006-12-162-3/+3
* Move ascender, descender, and kerning computation to ass_font.c.eugeni2006-12-163-33/+43
* Get rid on -DGNU_SOURCE for internal code, imported libs should be fixedreimar2006-12-121-1/+1
* Speed up ASS subtitles display by detecting changes between two consecutiveeugeni2006-12-063-11/+90
* Also free ass_library_t members in ass_library_donereimar2006-12-061-1/+5
* Open embedded fonts directly from memory.eugeni2006-12-035-9/+67
* Keep embedded fonts in ass_library_t and perform actual disk writeeugeni2006-12-039-85/+123
* Rename: ass_process_font -> ass_add_font.eugeni2006-12-032-5/+5
* Avoid calling validate_fname() twice for one string.eugeni2006-12-031-3/+1
* If a glyph is not found in the current font, switch to another one.eugeni2006-11-284-14/+121
* Skip glyphs with char code < 0x20.eugeni2006-11-281-0/+3
* Add FT_Library to ass_font_t.eugeni2006-11-282-0/+2
* Use (ass_font_t, char code) instead of (FT_Face, glyph index) to identifyeugeni2006-11-283-9/+9
* Don't include freetype headers in other headers.eugeni2006-11-272-10/+0
* Fix compilation broken in previous commit.eugeni2006-11-272-2/+2
* Move ass_font_desc_t and ass_font_t declarations to ass_font.h.eugeni2006-11-273-19/+17
* Cosmetics: reindent.eugeni2006-11-271-9/+9
* Don't call FT_Set_Transform/FT_Set_Pixel_Sizes if values have not changed.eugeni2006-11-271-0/+10
* Move ass_font_t allocation to ass_font.h.eugeni2006-11-275-26/+37
* Initialize font size with 0.eugeni2006-11-271-0/+1
* Remove obsolete "no_more_font_messages" hack.eugeni2006-11-264-16/+5
* Move fonts-related code to a separate file.eugeni2006-11-266-69/+197
* Make ass_new_font return ass_font_t struct (instead of just FT_Face).eugeni2006-11-263-38/+33
* Move ass_font_t to header.eugeni2006-11-262-8/+7
* Rename:eugeni2006-11-263-33/+33
* Merge common parts of all Makefiles into one file included by all.diego2006-11-261-32/+2
* SRCS should be one per line to make patches more readable.diego2006-11-251-1/+8
* Remove pointless indirection.diego2006-11-251-3/+1
* Remove superfluous comment.diego2006-11-251-3/+0
* Cosmetics: remove unneeded curly brackets.eugeni2006-11-201-3/+2
* Fix collision detection. The old method tried to avoid gaps between subtitleseugeni2006-11-201-21/+12
* Unify dep/depend targets.diego2006-11-201-3/+1
* MSGTRs for libasskraymer2006-11-196-48/+48
* Collect all includes of mplayer headers in libass in a single file (mputils.h).eugeni2006-11-197-15/+16
* Support \t with acceleration.eugeni2006-11-131-1/+3
* Partial fix for semitransparent glyph outlines.eugeni2006-11-131-1/+1
* s/break/continue/. A crazy mistake, somehow unnoticed for more that 2 months.eugeni2006-11-081-2/+2
* Bugfix: when copying ass_force_style_list, ending 0 was left out.eugeni2006-11-061-1/+2
* Calculate text bounding box in a way that does not depend on actual glypheugeni2006-11-061-36/+15
* Initialize fontconfig in VFCTRL_INIT_EOSD handler.eugeni2006-11-052-1/+4
* Cosmetics: indentation fix.eugeni2006-11-051-8/+8
* Fix the following compiler warnings:eugeni2006-11-051-2/+1
* More precise bounding box calculation for karaoke effects.eugeni2006-11-041-2/+7
* Prefer microsoft-specific charmaps to all other.eugeni2006-11-031-0/+20
* Introduce MSGT_ASS, use it for all libass messages.eugeni2006-11-037-91/+91
* Implement loading subtitles from memory.eugeni2006-11-032-24/+102
* Bugfix: sub_recode could deallocate global sub_cp under some circumstances.eugeni2006-11-031-1/+1
* Revert r20517.eugeni2006-10-295-201/+11
* Move ass_library initialization code to ass_mp.c.eugeni2006-10-292-0/+12
* Copy the following functions to libass to avoid dependency on the rest of mpl...eugeni2006-10-295-11/+201
* Fix width -> orig_width typo.eugeni2006-10-291-1/+1
* Don't set PlayResX for plaintext subtitles.eugeni2006-10-291-1/+0
* Add \N at the end of each subtitle line when converting from subdata.eugeni2006-10-291-2/+2
* Libass interface reworked:eugeni2006-10-289-89/+228
* If HAVE_FONTCONFIG is not defined, font_fontconfig might be declared bothreimar2006-10-281-5/+4
* Add missing fontconfig_done() call.eugeni2006-10-271-0/+2
* Split ass_configure() into several smaller functions.eugeni2006-10-264-65/+119
* Don't forget to apply scaling coefficients to kerning values.eugeni2006-10-201-2/+2
* Fix center of rotation calculation. It was overly complex andeugeni2006-10-191-9/+3
* Center of rotation depends on alignment.eugeni2006-10-181-2/+4
* Support separate rotation angle for each glyph.eugeni2006-10-181-10/+17
* Move base point calculation to a separate function. Will be reused soon.eugeni2006-10-181-26/+41
* Cosmetics: remove commented code.eugeni2006-10-181-5/+1
* Fix a typo in collision detection code.eugeni2006-10-181-1/+1
* Remove an outdated debug message.eugeni2006-10-161-1/+0
* Fix crash because of last_glyph < first_glyph, probably caused by first linereimar2006-10-151-1/+1
* Zerofill libass static variables during initialization.eugeni2006-10-141-0/+4
* Free FT_Stroker during libass deinitialization.eugeni2006-10-141-0/+4
* Reduce margins for plaintext subtitles.eugeni2006-10-091-3/+3
* Avoid crash with fontconfig 2.3.9x (as shipped with SuSE 10.1, FcDirScan is b...reimar2006-10-081-1/+5
* Add copyright notice and vim/emacs comments to libass and vf_ass.c.eugeni2006-10-0114-0/+280
* Cosmetics: add some comments.eugeni2006-09-242-0/+16
* Shadow support in libass.eugeni2006-09-245-14/+63
* Free memory in ass_synth_done().eugeni2006-09-241-0/+6
* Reduce size of non-blurred bitmaps.eugeni2006-09-231-1/+1
* Cosmetics. Change indentation of block of code to make it consistent witheugeni2006-09-231-39/+39
* Better fix_outline implementation. No more "fix_outline failed" messages,eugeni2006-09-231-12/+15
* Fix width -> orig_width typo causing subtitles to be too far to the rightreimar2006-09-221-1/+1
* Move calculation of text parameters (number of lines, height, etc.) fromeugeni2006-09-221-21/+36
* Move variable declaration to a more deeply nested block. It is not used outsi...eugeni2006-09-221-1/+2
* Cosmetics: fix indentation after last commit.eugeni2006-09-211-18/+18
* Fix FT_Stroker use in libass. The previous variant ended up with 0-widtheugeni2006-09-211-28/+18
* In r19831, font size multiplier was mistakenly applied to border width.eugeni2006-09-211-1/+3
* Sort events by ReadOrder (if both layer and start time are equal).eugeni2006-09-191-0/+4
* Set ReadOrder values for external subtitles.eugeni2006-09-191-0/+5
* Calculate text bounding box in such way that it does not depend on the heighteugeni2006-09-191-0/+2
* Cosmetics: fix indentation after last commit.eugeni2006-09-191-23/+23
* Don't call FcDirScan/FcDirSave with FontConfig >= 2.4.eugeni2006-09-191-1/+4
* Fix a stupid bug in list concatenation.eugeni2006-09-181-18/+9
* Reduce code duplication in init_render_context().eugeni2006-09-172-83/+93
* Subtract glyph bitmap from outline bitmap.eugeni2006-09-161-0/+22
* Add \be (blur edges) support to libass.eugeni2006-09-165-7/+128
* Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.eugeni2006-09-166-65/+156
* Make font outline width proportional to movie resolution.eugeni2006-09-131-4/+6
* Bugfix: timing for empty karaoke words was lost, resultingeugeni2006-09-061-5/+21
* Workaround for broken fonts with bad ascender/descender.eugeni2006-09-051-7/+11
* Change \fad behaviour so that it does not get cancelled by \r.eugeni2006-09-051-9/+10
* Simplification.eugeni2006-09-051-44/+34
* Add vertical clipping for subtitles that were moved because of a collision.eugeni2006-09-041-0/+15
* Fix possible unallocated memory read in libass line wrapping code.eugeni2006-09-041-2/+2
* Apply -ass-force-style also to matroska plaintext subs.eugeni2006-09-031-1/+1
* Cosmetics: restore indentation after recent changes.eugeni2006-09-031-49/+49
* Add -ass-styles option. It allows to load styles from a file and use themeugeni2006-09-034-14/+61
* Fix last commit.eugeni2006-09-031-1/+1
* More checks in ass_render_event.eugeni2006-09-031-7/+9
* Remove unneeded variable.eugeni2006-09-031-4/+3
* ass-color and ass-border-color options.eugeni2006-09-032-3/+14
* Add support for rendering matroska plaintext subtitles with libass.eugeni2006-09-022-27/+78
* Don't sort events when reading external subs. With r19644, the order does not...eugeni2006-09-021-19/+0
* Better collision detection algorithm. The idea is to keep a subtitle in placeeugeni2006-09-024-93/+269
* Remove some unused code.eugeni2006-09-021-5/+0
* Read layer info from external subs.eugeni2006-09-021-0/+1
* Make \fr* parameter a floating point value.eugeni2006-09-011-4/+4
* Bugfix: potential write of unallocated memory.eugeni2006-08-311-3/+5
* Bugfix: wrong height value used in font size calculation.eugeni2006-08-311-1/+1
* Change default font family and color for plain text subs.eugeni2006-08-291-4/+4
* Bugfix: strdup of NULL value.eugeni2006-08-291-1/+1
* Apply -ass-force-style also to tracks generated from subdata.eugeni2006-08-292-1/+3
* Ignore '*' at the beginning of style name.eugeni2006-08-281-0/+1
* Fix font scaling taking margins into account.eugeni2006-08-281-1/+1
* Add -(no)ass-use-margins option.eugeni2006-08-282-0/+2
* Cosmetics: fix indentation after r19562.eugeni2006-08-271-29/+29
* Transition effects support.eugeni2006-08-271-22/+113
* Simplify ass_glyph_cache_reset().eugeni2006-08-261-4/+5
* Reset glyph cache on reconfigure.eugeni2006-08-263-3/+15
* Add right and left margins support to libass.eugeni2006-08-262-4/+18
* Fix previous commit.eugeni2006-08-241-1/+1
* Simplify vf_ass initialization.eugeni2006-08-241-3/+7
* New cmdline option: -ass-force-style.eugeni2006-08-223-1/+76
* SSA/ASS parser reworked, with 2 main results:eugeni2006-08-223-115/+237
* use of malloc without prototype.. very bad on 64bit archsrfelker2006-08-211-0/+1
* no c++ decls!rfelker2006-08-211-1/+3
* Add public functions for removal of styles and events.eugeni2006-08-212-21/+38
* Move all internal -I parameters to the front of CFLAGS to avoid using externaldiego2006-08-171-2/+2
* Fix wrong handling of transparency in \fad(\fade).eugeni2006-08-161-4/+15
* Replace stdint.h with inttypes.h.eugeni2006-08-154-4/+2
* Angle value from style was ignored. Not anymore.eugeni2006-08-151-1/+1
* Add subdata to ass_track conversion for external subtitles.eugeni2006-08-153-1/+106
* Cosmetics: fix indentation after the last patch.eugeni2006-08-151-12/+12
* Allow \fade to be used in place of \fad and vice versa.eugeni2006-08-151-21/+23
* Replace %lld with PRId64, part 2.eugeni2006-08-132-2/+4
* MinGW treats %lld as %d. Replace it with PRId64.eugeni2006-08-131-1/+2
* Fix compilation with gcc 2.95.eugeni2006-08-121-6/+7
* Use FontConfig cache to speedup mplayer startup.eugeni2006-08-061-0/+28
* Unify include paths in the build system, part I.diego2006-07-271-2/+0
*