summaryrefslogtreecommitdiffstats
path: root/libass
Commit message (Expand)AuthorAgeFilesLines
* Do not use leading underscores in multiple inclusion guards, they are reserved.diego2007-07-0210-20/+20
* Consistently use filename as multiple inclusion guard.diego2007-07-021-2/+2
* When parsing ass-force-style arguments, search for '=' and '.' characters witheugeni2007-06-151-2/+2
* Make sure there is at least one style in ass_track when parsing events.eugeni2007-06-151-7/+8
* Move code for reading a file and recoding it to utf-8 to a separate function.eugeni2007-06-012-9/+23
* Fix #if condition.eugeni2007-05-201-1/+1
* FT_Request_Size does not exist in FreeType 2.1.*. Fallback to FT_Set_Char_Size.eugeni2007-05-201-0/+4
* Correct font size in libass.eugeni2007-05-193-10/+28
* Revert y-axis rotation. Change order of rotations.eugeni2007-05-181-4/+5
* Support fractional font sizes.eugeni2007-05-146-17/+19
* Limit ass_font_set_transform to nonrotating transformations.eugeni2007-05-144-23/+30
* Don't deallocate font data if it will be used later.eugeni2007-05-091-1/+3
* Move variables and a function under #ifdef FC_VERSION to avoid warnings.eugeni2007-05-031-10/+12
* Deallocate FontConfig objects.eugeni2007-05-031-9/+14
* Fix stupid bug in r23229.eugeni2007-05-031-1/+1
* Deallocate string.eugeni2007-05-031-0/+1
* In ass_font_new, allocate temporary ass_font_t on stack and return the pointereugeni2007-05-031-19/+17
* Make cache_*_add functions return the pointer to new (copied) value.eugeni2007-05-032-11/+12
* Always deallocate glyphs. Fixes memory leak.eugeni2007-05-021-5/+5
* Update comments.eugeni2007-05-011-11/+25
* Cosmetics.eugeni2007-05-011-4/+4
* Move glyph_to_bitmap() call and outline glyph deallocation toeugeni2007-05-011-30/+22
* Minor code simplification.eugeni2007-05-011-14/+16
* Move get_bitmap_glyph() call to a separate loop.eugeni2007-05-011-1/+3
* Move transform_3d() call to get_bitmap_glyph().eugeni2007-05-011-10/+9
* Make a function static.eugeni2007-05-011-1/+1
* Don't recalculate rotation radius. eugeni2007-05-011-2/+2
* Bugfix: glyph cache depends on border width, because it contains outline_glypheugeni2007-05-012-0/+2
* Add -ass-hinting option for setting font hinting method.eugeni2007-04-276-6/+39
* Fix division by zero in "\t" parsing.eugeni2007-04-271-3/+6
* Do not use FT_Glyph_Copy with NULL glyphs.eugeni2007-04-241-2/+5
* Deallocate glyphs in a separate loop.eugeni2007-04-211-0/+3
* Always deallocate glyphs. Fixes a memory leak.eugeni2007-04-211-3/+4
* Reset outline glyph cache when configuration changes.eugeni2007-04-211-0/+1
* Scale camera distance.eugeni2007-04-211-3/+4
* Remove unused variables.eugeni2007-04-201-2/+0
* Cosmetics.eugeni2007-04-201-6/+5
* Allow caching of rotated glyphs.eugeni2007-04-201-4/+0
* Add shift_[xy] (vector that is added to the glyph before transformation) toeugeni2007-04-202-3/+12
* Fill bitmap_hash_key during parsing stage, call get_bitmap_glyph() much later.eugeni2007-04-201-16/+19
* Remove bbox and advance vector from bitmap cache.eugeni2007-04-202-8/+0
* Store outline_glyph (glyph border) in glyph cache.eugeni2007-04-203-8/+12
* Cosmetics: reindentation.eugeni2007-04-201-4/+4
* Because of the outline glyph cache it is now possible for glyph_info_t to haveeugeni2007-04-201-1/+3
* Make get_*_glyph return void.eugeni2007-04-201-13/+5
* Move outline glyph generation to a separate function, using outline glypheugeni2007-04-201-34/+60
* Oops, fix compilation broken in r23037.eugeni2007-04-201-1/+1
* Collect hit/miss statistic in hash map, and print in -v mode.eugeni2007-04-201-2/+11
* Add outline glyph cache (unused yet).eugeni2007-04-202-0/+68
* Rename glyph cache to bitmap cache.eugeni2007-04-203-41/+40
* Add generic hash map implementation.eugeni2007-04-202-120/+179
* A meaningless cosmetic change.eugeni2007-04-201-1/+1
* Add perspective projection.eugeni2007-04-201-0/+12
* Applying transformation matrix to the glyph and the shift vector separately iseugeni2007-04-201-26/+20
* Cosmetics: reindentation.eugeni2007-04-201-7/+7
* Disable caching of rotated glyphs.eugeni2007-04-201-0/+4
* Fix a stupid bug in r22473: bbox is zero-filled everytime when a glypheugeni2007-04-131-5/+1
* Remove unused includes.eugeni2007-04-101-2/+0
* Don't check if user-supplied default font path exists.eugeni2007-04-101-6/+1
* Fix lost hard linebreaks in libass by repeating the loop when both soft andeugeni2007-04-071-0/+5
* "()" to "(void)" function param list fixesuau2007-04-015-6/+6
* Use FT_Glyph_StrokeBorder to render only the outside border.iive2007-03-311-1/+1
* Remove unnecessary include from CFLAGS.diego2007-03-151-2/+0
* cosmetics: Fix indentation, reorder some lines for consistency.diego2007-03-131-9/+8
* Give more descriptive names to the source and library variables and splitdiego2007-03-131-2/+2
* A function always returning 0 could as well return void.eugeni2007-03-061-11/+4
* Text alignment should not use bounding boxes of individual glyphs.eugeni2007-03-061-3/+3
* Reset advance vector and glyph bounding box if glyph could not be found.eugeni2007-03-061-0/+6
* Fix incorrect spacing introduced in r22231:eugeni2007-03-031-2/+2
* 10l: x2scr used twice instead of y2scr.eugeni2007-03-021-1/+1
* Bugfix: transform origin to screen coordinates.eugeni2007-03-021-2/+2
* 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.eugeni