summaryrefslogtreecommitdiffstats
path: root/libass/ass_bitmap.h
diff options
context:
space:
mode:
authorgreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 01:17:05 +0000
committergreg <greg@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 01:17:05 +0000
commitcd12c943e846ec7ec4e6d65266f20670e2072927 (patch)
tree613366e4e01904241707a15b02cacf305436a469 /libass/ass_bitmap.h
parent34e8e99865ae9227ca9d522fa394112ba1dfd5ef (diff)
downloadlibass-cd12c943e846ec7ec4e6d65266f20670e2072927.tar.bz2
libass-cd12c943e846ec7ec4e6d65266f20670e2072927.tar.xz
Use blur with kernel [[1,2,1], [2,4,2], [1,2,1]] for \be.
This is faster than gaussian blur and similar to vsfilter. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28834 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass/ass_bitmap.h')
-rw-r--r--libass/ass_bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libass/ass_bitmap.h b/libass/ass_bitmap.h
index 5f45aae..c0b4ad2 100644
--- a/libass/ass_bitmap.h
+++ b/libass/ass_bitmap.h
@@ -46,7 +46,7 @@ typedef struct bitmap_s {
* \param bm_g out: pointer to the bitmap of glyph shadow is returned here
* \param be 1 = produces blurred bitmaps, 0 = normal bitmaps
*/
-int glyph_to_bitmap(ass_synth_priv_t* priv, ass_synth_priv_t* priv_blur, FT_Glyph glyph, FT_Glyph outline_glyph, bitmap_t** bm_g, bitmap_t** bm_o, bitmap_t** bm_s, int be, double blur_radius);
+int glyph_to_bitmap(ass_synth_priv_t* priv_blur, FT_Glyph glyph, FT_Glyph outline_glyph, bitmap_t** bm_g, bitmap_t** bm_o, bitmap_t** bm_s, int be, double blur_radius);
void ass_free_bitmap(bitmap_t* bm);