# HG changeset patch # User diego # Date 1239569060 0 # Node ID b226cc9b492cfcb75bb578495c71dcd6555e8bc1 # Parent df0f3be3c12f9bcee8784f2744b9011d16e07d9e Reduce subtitle parsing verbosity. diff -r df0f3be3c12f -r b226cc9b492c subreader.c --- a/subreader.c Sun Apr 12 17:07:30 2009 +0000 +++ b/subreader.c Sun Apr 12 20:44:20 2009 +0000 @@ -1261,7 +1261,7 @@ sub = nextsub; m = 0; } - if (n) mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Adjusted %d subtitle(s).\n", n); + if (n) mp_msg(MSGT_SUBREADER,MSGL_V,"SUB: Adjusted %d subtitle(s).\n", n); } struct subreader { @@ -1364,7 +1364,7 @@ mpsub_multiplier = (uses_time ? 100.0 : 1.0); if (sub_format==SUB_INVALID) {mp_msg(MSGT_SUBREADER,MSGL_WARN,"SUB: Could not determine file format\n");return NULL;} srp=sr+sub_format; - mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Detected subtitle file format: %s\n", srp->name); + mp_msg(MSGT_SUBREADER, MSGL_V, "SUB: Detected subtitle file format: %s\n", srp->name); stream_reset(fd); stream_seek(fd,0); @@ -1479,9 +1479,8 @@ #endif // printf ("SUB: Subtitle format %s time.\n", uses_time?"uses":"doesn't use"); - mp_msg(MSGT_SUBREADER,MSGL_INFO,"SUB: Read %i subtitles", sub_num); - if (sub_errs) mp_msg(MSGT_SUBREADER,MSGL_INFO,", %i bad line(s).\n", sub_errs); - else mp_msg(MSGT_SUBREADER,MSGL_INFO,".\n"); + mp_msg(MSGT_SUBREADER, MSGL_V,"SUB: Read %i subtitles, %i bad line(s).\n", + sub_num, sub_errs); if(sub_num<=0){ free(first);