summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2010-01-19 00:55:46 +0100
committerGrigori Goronzy <greg@blackbox>2010-01-19 00:57:06 +0100
commit3f7a51356dd674c51787865bbcc091a815538794 (patch)
tree99287b008a7f2e43489b214678b7cfdedcda7aed
parent14f53e07ba1b2a2e9bb65a118032382fe4a50d61 (diff)
downloadlibass-3f7a51356dd674c51787865bbcc091a815538794.tar.bz2
libass-3f7a51356dd674c51787865bbcc091a815538794.tar.xz
Adjust a few message levels and message texts
-rw-r--r--libass/ass_fontconfig.c2
-rw-r--r--libass/ass_render.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/libass/ass_fontconfig.c b/libass/ass_fontconfig.c
index 2a43694..dae08b4 100644
--- a/libass/ass_fontconfig.c
+++ b/libass/ass_fontconfig.c
@@ -388,7 +388,7 @@ FCInstance *fontconfig_init(ASS_Library *library,
process_fontdata(priv, library, ftlibrary, i);
if (dir) {
- ass_msg(library, MSGL_INFO, "Updating font cache");
+ ass_msg(library, MSGL_V, "Updating font cache");
rc = FcConfigAppFontAddDir(priv->config, (const FcChar8 *) dir);
if (!rc) {
diff --git a/libass/ass_render.c b/libass/ass_render.c
index 6bc0c61..6e4fb7a 100644
--- a/libass/ass_render.c
+++ b/libass/ass_render.c
@@ -125,7 +125,7 @@ ASS_Renderer *ass_renderer_init(ASS_Library *library)
ass_init_exit:
if (priv)
- ass_msg(library, MSGL_INFO, "Init");
+ ass_msg(library, MSGL_V, "Init");
else
ass_msg(library, MSGL_ERR, "Init failed");
@@ -538,7 +538,7 @@ static void blend_vector_clip(ASS_Renderer *render_priv,
FT_Glyph_Copy((FT_Glyph) drawing->glyph, &glyph);
error = FT_Glyph_To_Bitmap(&glyph, FT_RENDER_MODE_NORMAL, 0, 1);
if (error) {
- ass_msg(render_priv->library, MSGL_V,
+ ass_msg(render_priv->library, MSGL_WARN,
"Clip vector rasterization failed: %d. Skipping.", error);
goto blend_vector_exit;
}
@@ -2072,7 +2072,7 @@ ass_render_event(ASS_Renderer *render_priv, ASS_Event *event,
double scr_y;
if (valign != VALIGN_SUB)
ass_msg(render_priv->library, MSGL_V,
- "Invalid valign, supposing 0 (subtitle)");
+ "Invalid valign, assuming 0 (subtitle)");
scr_y =
y2scr_sub(render_priv,
render_priv->track->PlayResY - MarginV);
@@ -2505,7 +2505,7 @@ fix_collisions(ASS_Renderer *render_priv, EventImages *imgs, int cnt)
s.hb = priv->left + priv->width;
if (priv->height != imgs[i].height) { // no, it's not
ass_msg(render_priv->library, MSGL_WARN,
- "Warning! Event height has changed");
+ "Event height has changed");
priv->top = 0;
priv->height = 0;
priv->left = 0;