summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2011-08-22 00:38:34 +0200
committerGrigori Goronzy <greg@blackbox>2011-08-22 00:38:34 +0200
commit5b0215abe427fe394da675dab1cc937ba6db350a (patch)
tree964a03dba051d761ee8c084317e5330848da66c2
parentce16b9e1a19c3983a20f9a09d30ab7843cccdc14 (diff)
downloadlibass-5b0215abe427fe394da675dab1cc937ba6db350a.tar.bz2
libass-5b0215abe427fe394da675dab1cc937ba6db350a.tar.xz
Nicer initialization messages
Adjust the renderer initialization messages and get rid of a rather useless message, FreeType headers version.
-rw-r--r--libass/ass_render.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libass/ass_render.c b/libass/ass_render.c
index d317d98..2a9b147 100644
--- a/libass/ass_render.c
+++ b/libass/ass_render.c
@@ -44,10 +44,8 @@ ASS_Renderer *ass_renderer_init(ASS_Library *library)
}
FT_Library_Version(ft, &vmajor, &vminor, &vpatch);
- ass_msg(library, MSGL_V, "FreeType library version: %d.%d.%d",
+ ass_msg(library, MSGL_V, "Raster: FreeType %d.%d.%d",
vmajor, vminor, vpatch);
- ass_msg(library, MSGL_V, "FreeType headers version: %d.%d.%d",
- FREETYPE_MAJOR, FREETYPE_MINOR, FREETYPE_PATCH);
priv = calloc(1, sizeof(ASS_Renderer));
if (!priv) {
@@ -85,9 +83,9 @@ ASS_Renderer *ass_renderer_init(ASS_Library *library)
ass_init_exit:
if (priv)
- ass_msg(library, MSGL_V, "Init");
+ ass_msg(library, MSGL_V, "Initialized");
else
- ass_msg(library, MSGL_ERR, "Init failed");
+ ass_msg(library, MSGL_ERR, "Initialization failed");
return priv;
}