From 2f6b07dba8627ec4c76e1855e78d40ada06f469a Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 26 Sep 2001 21:35:14 +0000 Subject: all error/warn/info messages moved to help_mp-en.h for translation git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1974 b3059339-0415-0410-9bf9-f77b7e298cf2 --- dll_init.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dll_init.c') diff --git a/dll_init.c b/dll_init.c index 58d97ff4aa..6b5173e858 100644 --- a/dll_init.c +++ b/dll_init.c @@ -5,6 +5,7 @@ #include "config.h" #include "mp_msg.h" +#include "help_mp.h" #include "stream.h" #include "demuxer.h" @@ -50,7 +51,7 @@ int init_acm_audio_codec(sh_audio_t *sh_audio){ if(ret==ACMERR_NOTPOSSIBLE) mp_msg(MSGT_WIN32,MSGL_ERR,"ACM_Decoder: Unappropriate audio format\n"); else - mp_msg(MSGT_WIN32,MSGL_ERR,"ACM_Decoder: acmStreamOpen error %d", (int)ret); + mp_msg(MSGT_WIN32,MSGL_ERR,"ACM_Decoder: acmStreamOpen error: %d", (int)ret); sh_audio->srcstream=NULL; return 0; } @@ -283,7 +284,7 @@ int init_video_codec(sh_video_t *sh_video,int ex){ sh_video->our_out_buffer = memalign(64,sh_video->o_bih.biSizeImage); if(!sh_video->our_out_buffer){ - mp_msg(MSGT_WIN32,MSGL_ERR,"not enough memory for decoded picture buffer (%ld bytes)\n", sh_video->o_bih.biSizeImage); + mp_msg(MSGT_WIN32,MSGL_ERR,MSGTR_NoMemForDecodedImage, sh_video->o_bih.biSizeImage); return 0; } -- cgit v1.2.3