# HG changeset patch # User eugeni # Date 1159036519 0 # Node ID 5f268ded7f6ab1410aaab0e7f9e89b63ef3df8ab # Parent 2792de2ca0697d2fb48c98d6f9bb3ce887ceaf51 Reduce size of non-blurred bitmaps. diff -r 2792de2ca069 -r 5f268ded7f6a libass/ass_bitmap.c --- a/libass/ass_bitmap.c Sat Sep 23 17:54:24 2006 +0000 +++ b/libass/ass_bitmap.c Sat Sep 23 18:35:19 2006 +0000 @@ -183,7 +183,7 @@ int glyph_to_bitmap(ass_synth_priv_t* priv, FT_Glyph glyph, FT_Glyph outline_glyph, bitmap_t** bm_g, bitmap_t** bm_o, int be) { - const int bord = ceil(blur_radius); + const int bord = be ? ceil(blur_radius) : 0; assert(bm_g && bm_o);