summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-22 09:26:58 +0000
committerkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-22 09:26:58 +0000
commitc47df473f9ed1bd3975aa931e2c795891b02e83e (patch)
treef2236eb738f25e9aa1d4116e676547b6c4037f98
parent94f47bf8a3cb17632744fe9648e6769a1c997ce8 (diff)
downloadmpv-c47df473f9ed1bd3975aa931e2c795891b02e83e.tar.bz2
mpv-c47df473f9ed1bd3975aa931e2c795891b02e83e.tar.xz
MSGTR for libmpcodecs/vd.c
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21161 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--help/help_mp-en.h1
-rw-r--r--libmpcodecs/vd.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/help/help_mp-en.h b/help/help_mp-en.h
index 3b25a74d2f..b144a4b42c 100644
--- a/help/help_mp-en.h
+++ b/help/help_mp-en.h
@@ -667,6 +667,7 @@ static char help_text[]=
// vd.c
#define MSGTR_CodecDidNotSet "VDec: Codec did not set sh->disp_w and sh->disp_h, trying workaround.\n"
#define MSGTR_VoConfigRequest "VDec: vo config request - %d x %d (preferred colorspace: %s)\n"
+#define MSGTR_UsingXAsOutputCspNoY "VDec: using %s as output csp (no %d)\n"
#define MSGTR_CouldNotFindColorspace "Could not find matching colorspace - retrying with -vf scale...\n"
#define MSGTR_MovieAspectIsSet "Movie-Aspect is %.2f:1 - prescaling to correct movie aspect.\n"
#define MSGTR_MovieAspectUndefined "Movie-Aspect is undefined - no prescaling applied.\n"
diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c
index 90a5c1fb6e..7b911a35ef 100644
--- a/libmpcodecs/vd.c
+++ b/libmpcodecs/vd.c
@@ -226,7 +226,7 @@ csp_again:
return 0; // failed
}
out_fmt=sh->codec->outfmt[j];
- mp_msg(MSGT_CPLAYER,MSGL_INFO,"VDec: using %s as output csp (no %d)\n",vo_format_name(out_fmt),j);
+ mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_UsingXAsOutputCspNoY,vo_format_name(out_fmt),j);
sh->outfmtidx=j;
sh->vfilter=vf;