[MPlayer-cvslog] CVS: main/libmpcodecs dec_audio.c, 1.44, 1.45 dec_video.c, 1.163, 1.164
Diego Biurrun CVS
syncmail at mplayerhq.hu
Tue Oct 18 13:11:27 CEST 2005
CVS change done by Diego Biurrun CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv13114/libmpcodecs
Modified Files:
dec_audio.c dec_video.c
Log Message:
Make a few more messages translatable by moving them into help_mp-en.h.
patch by Paul TT < paultt == at == hackerjournal == dot == it >
Index: dec_audio.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/dec_audio.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- dec_audio.c 30 Aug 2005 23:56:23 -0000 1.44
+++ dec_audio.c 18 Oct 2005 11:11:24 -0000 1.45
@@ -241,7 +241,7 @@
return 0; // failed
}
-mp_msg(MSGT_DECAUDIO,MSGL_INFO,"Selected audio codec: [%s] afm:%s (%s)\n",
+mp_msg(MSGT_DECAUDIO,MSGL_INFO,MSGTR_SelectedAudioCodec,
sh_audio->codec->name,sh_audio->codec->drv,sh_audio->codec->info);
return 1; // success
}
@@ -306,7 +306,7 @@
// filter config:
memcpy(&afs->cfg,&af_cfg,sizeof(af_cfg_t));
- mp_msg(MSGT_DECAUDIO, MSGL_INFO, "Building audio filter chain for %dHz/%dch/%s -> %dHz/%dch/%s...\n",
+ mp_msg(MSGT_DECAUDIO, MSGL_INFO, MSGTR_BuildingAudioFilterChain,
afs->input.rate,afs->input.nch,af_fmt2str_short(afs->input.format),
afs->output.rate,afs->output.nch,af_fmt2str_short(afs->output.format));
Index: dec_video.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/dec_video.c,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- dec_video.c 31 Aug 2005 09:24:44 -0000 1.163
+++ dec_video.c 18 Oct 2005 11:11:25 -0000 1.164
@@ -297,7 +297,7 @@
return 0; // failed
}
-mp_msg(MSGT_DECVIDEO,MSGL_INFO,"Selected video codec: [%s] vfm:%s (%s)\n",
+mp_msg(MSGT_DECVIDEO,MSGL_INFO,MSGTR_SelectedVideoCodec,
sh_video->codec->name,sh_video->codec->drv,sh_video->codec->info);
return 1; // success
}
More information about the MPlayer-cvslog
mailing list