Mercurial > mplayer.hg
annotate libass/ass_bitmap.h @ 36659:f41b65ac7e81
configure: disable internal libmpeg2 by default.
While the last tests showed that it can be slightly
faster in some cases, the difference should not be
relevant to the majority of users.
In addition, the code is of not particularly high
quality, so I consider it better/safer to have it
disabled by default.
Removing the code after the next release is a possible
future action.
author | reimar |
---|---|
date | Sun, 26 Jan 2014 18:19:31 +0000 |
parents | c3aaaf17c721 |
children |
rev | line source |
---|---|
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19966
diff
changeset
|
1 /* |
26723 | 2 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
3 * | |
26738
588ce97b44f2
Speak of libass instead of MPlayer in the libass license headers.
diego
parents:
26723
diff
changeset
|
4 * This file is part of libass. |
26723 | 5 * |
34011 | 6 * Permission to use, copy, modify, and distribute this software for any |
7 * purpose with or without fee is hereby granted, provided that the above | |
8 * copyright notice and this permission notice appear in all copies. | |
26723 | 9 * |
34011 | 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | |
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | |
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | |
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
26723 | 17 */ |
20008
fa122b7c71c6
Add copyright notice and vim/emacs comments to libass and vf_ass.c.
eugeni
parents:
19966
diff
changeset
|
18 |
25897
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25535
diff
changeset
|
19 #ifndef LIBASS_BITMAP_H |
aaebaf255b23
Consistently give all libass multiple inclusion guards a LIBASS_ prefix.
diego
parents:
25535
diff
changeset
|
20 #define LIBASS_BITMAP_H |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
diff
changeset
|
21 |
26138
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
22 #include <ft2build.h> |
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
23 #include FT_GLYPH_H |
74055622161d
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
25897
diff
changeset
|
24 |
30200 | 25 #include "ass.h" |
19848 | 26 |
30200 | 27 typedef struct ass_synth_priv ASS_SynthPriv; |
19848 | 28 |
30200 | 29 ASS_SynthPriv *ass_synth_init(double); |
30 void ass_synth_done(ASS_SynthPriv *priv); | |
31 | |
32 typedef struct { | |
33 int left, top; | |
34 int w, h; // width, height | |
34295 | 35 int stride; |
30200 | 36 unsigned char *buffer; // w x h buffer |
37 } Bitmap; | |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
diff
changeset
|
38 |
34295 | 39 Bitmap *outline_to_bitmap(ASS_Library *library, FT_Library ftlib, |
40 FT_Outline *outline, int bord); | |
19966 | 41 /** |
42 * \brief perform glyph rendering | |
43 * \param glyph original glyph | |
44 * \param outline_glyph "border" glyph, produced from original by FreeType's glyph stroker | |
45 * \param bm_g out: pointer to the bitmap of original glyph is returned here | |
46 * \param bm_o out: pointer to the bitmap of outline (border) glyph is returned here | |
47 * \param bm_g out: pointer to the bitmap of glyph shadow is returned here | |
48 * \param be 1 = produces blurred bitmaps, 0 = normal bitmaps | |
36363 | 49 * \param border_visible whether border is visible if border_style is 3 |
19966 | 50 */ |
34295 | 51 int outline_to_bitmap3(ASS_Library *library, ASS_SynthPriv *priv_blur, |
52 FT_Library ftlib, FT_Outline *outline, FT_Outline *border, | |
53 Bitmap **bm_g, Bitmap **bm_o, Bitmap **bm_s, | |
54 int be, double blur_radius, FT_Vector shadow_offset, | |
36363 | 55 int border_style, int border_visible); |
19966 | 56 |
30200 | 57 void ass_free_bitmap(Bitmap *bm); |
19846
bcc792bfa431
Store bitmap glyphs in a separate struct, instead of FreeType's internal buffer.
eugeni
parents:
diff
changeset
|
58 |
30200 | 59 #endif /* LIBASS_BITMAP_H */ |