summaryrefslogtreecommitdiffstats
path: root/subreader.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-23 04:33:09 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-23 04:33:09 +0000
commit01ac53f6f0e461242fc8f3e0163c01bf9d7a0490 (patch)
tree4dea09bce98071a4111ffba93aa871c521408a41 /subreader.c
parentbd45bc8f343b89892b07ff8e7a026f4633b63339 (diff)
downloadmpv-01ac53f6f0e461242fc8f3e0163c01bf9d7a0490.tar.bz2
mpv-01ac53f6f0e461242fc8f3e0163c01bf9d7a0490.tar.xz
Part 4 of otvos attila's oattila AT chello-hu mp_msg changes, no modifications this time
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18213 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'subreader.c')
-rw-r--r--subreader.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/subreader.c b/subreader.c
index f607090528..7402c97e9d 100644
--- a/subreader.c
+++ b/subreader.c
@@ -1916,7 +1916,7 @@ char** sub_filenames(char* path, char *fname)
if (!prio && tmp_sub_id)
{
sprintf(tmpresult, "%s %s", f_fname_trim, tmp_sub_id);
- printf("dvdsublang...%s\n", tmpresult);
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"dvdsublang...%s\n", tmpresult);
if (strcmp(tmp_fname_trim, tmpresult) == 0 && sub_match_fuzziness >= 1) {
// matches the movie name + lang extension
prio = 5;
@@ -2007,20 +2007,20 @@ void list_sub_file(sub_data* subd){
for(j=0; j < subd->sub_num; j++){
subtitle* egysub=&subs[j];
- printf ("%i line%c (%li-%li)\n",
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"%i line%c (%li-%li)\n",
egysub->lines,
(1==egysub->lines)?' ':'s',
egysub->start,
egysub->end);
for (i=0; i<egysub->lines; i++) {
- printf ("\t\t%d: %s%s", i,egysub->text[i], i==egysub->lines-1?"":" \n ");
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"\t\t%d: %s%s", i,egysub->text[i], i==egysub->lines-1?"":" \n ");
}
- printf ("\n");
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"\n");
}
- printf ("Subtitle format %s time.\n",
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"Subtitle format %s time.\n",
subd->sub_uses_time ? "uses":"doesn't use");
- printf ("Read %i subtitles, %i errors.\n", subd->sub_num, subd->sub_errs);
+ mp_msg(MSGT_SUBREADER,MSGL_INFO,"Read %i subtitles, %i errors.\n", subd->sub_num, subd->sub_errs);
}
void dump_srt(sub_data* subd, float fps){