summaryrefslogtreecommitdiffstats
path: root/libass/ass_render.c
Commit message (Expand)AuthorAgeFilesLines
* 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-191-4/+4
* 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-191-7/+7
* 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-161-22/+104
* Consistently name z-axis rotation angle "frz".eugeni2007-02-161-5/+5
* Move conversions between 16.16, 26.6 fixed point and int, double to separateeugeni2007-02-161-17/+17
* \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
* Keep reselected fonts in an array, adding new ones to the end. Glypheugeni2006-12-161-1/+1
* Remove a mistakenly committed debug printf.eugeni2006-12-161-2/+0
* Move ascender, descender, and kerning computation to ass_font.c.eugeni2006-12-161-33/+9
* Speed up ASS subtitles display by detecting changes between two consecutiveeugeni2006-12-061-10/+84
* Open embedded fonts directly from memory.eugeni2006-12-031-2/+2
* Keep embedded fonts in ass_library_t and perform actual disk writeeugeni2006-12-031-1/+1
* Use (ass_font_t, char code) instead of (FT_Face, glyph index) to identifyeugeni2006-11-281-4/+4
* Fix compilation broken in previous commit.eugeni2006-11-271-1/+1
* Move ass_font_t allocation to ass_font.h.eugeni2006-11-271-1/+1
* Remove obsolete "no_more_font_messages" hack.eugeni2006-11-261-2/+0
* Move fonts-related code to a separate file.eugeni2006-11-261-28/+9
* Make ass_new_font return ass_font_t struct (instead of just FT_Face).eugeni2006-11-261-24/+20
* Rename:eugeni2006-11-261-4/+4
* 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
* MSGTRs for libasskraymer2006-11-191-16/+16
* Collect all includes of mplayer headers in libass in a single file (mputils.h).eugeni2006-11-191-4/+1
* Support \t with acceleration.eugeni2006-11-131-1/+3
* s/break/continue/. A crazy mistake, somehow unnoticed for more that 2 months.eugeni2006-11-081-2/+2
* Calculate text bounding box in a way that does not depend on actual glypheugeni2006-11-061-36/+15
* More precise bounding box calculation for karaoke effects.eugeni2006-11-041-2/+7
* Introduce MSGT_ASS, use it for all libass messages.eugeni2006-11-031-42/+42
* Revert r20517.eugeni2006-10-291-1/+3
* Copy the following functions to libass to avoid dependency on the rest of mpl...eugeni2006-10-291-3/+1
* Fix width -> orig_width typo.eugeni2006-10-291-1/+1
* Libass interface reworked:eugeni2006-10-281-33/+33
* Add missing fontconfig_done() call.eugeni2006-10-271-0/+2
* Split ass_configure() into several smaller functions.eugeni2006-10-261-44/+83
* 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
* Add copyright notice and vim/emacs comments to libass and vf_ass.c.eugeni2006-10-011-0/+20
* Shadow support in libass.eugeni2006-09-241-4/+30
* 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
* Calculate text bounding box in such way that it does not depend on the heighteugeni2006-09-191-0/+2
* Fix a stupid bug in list concatenation.eugeni2006-09-181-18/+9
* Reduce code duplication in init_render_context().eugeni2006-09-171-77/+84
* Add \be (blur edges) support to libass.eugeni2006-09-161-3/+16
* Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.eugeni2006-09-161-60/+44
* 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
* 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
* Better collision detection algorithm. The idea is to keep a subtitle in placeeugeni2006-09-021-68/+263
* Remove some unused code.eugeni2006-09-021-5/+0
* Make \fr* parameter a floating point value.eugeni2006-09-011-4/+4
* Bugfix: wrong height value used in font size calculation.eugeni2006-08-311-1/+1
* Fix font scaling taking margins into account.eugeni2006-08-281-1/+1
* Cosmetics: fix indentation after r19562.eugeni2006-08-271-29/+29
* Transition effects support.eugeni2006-08-271-22/+113
* Reset glyph cache on reconfigure.eugeni2006-08-261-1/+7
* Add right and left margins support to libass.eugeni2006-08-261-4/+14
* Fix previous commit.eugeni2006-08-241-1/+1
* Simplify vf_ass initialization.eugeni2006-08-241-3/+7
* Fix wrong handling of transparency in \fad(\fade).eugeni2006-08-161-4/+15
* Replace stdint.h with inttypes.h.eugeni2006-08-151-1/+0
* Angle value from style was ignored. Not anymore.eugeni2006-08-151-1/+1
* Add subdata to ass_track conversion for external subtitles.eugeni2006-08-151-1/+3
* 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-131-1/+3
* Fix compilation with gcc 2.95.eugeni2006-08-121-6/+7
* marks several read-only string parameters which aren't modified inside the ca...reynaldo2006-07-151-1/+1
* marks several function without a prototype which arent used outside its sourc...reynaldo2006-07-131-2/+2
* Support 6 argument variant of \move.eugeni2006-07-121-7/+20
* Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().eugeni2006-07-101-1/+5
* Initial libass release (without mencoder support).eugeni2006-07-071-0/+1766