summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/ve_raw.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-31 00:15:47 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-31 00:15:47 +0000
commitb4c74fb28e7012d2c682896418e5ee573e3614f7 (patch)
tree0ea489773dbba06af0a37771c11f917ec78c7edc /libmpcodecs/ve_raw.c
parente5782cf37b2f6e340d17a8a9eec6d6461f1fee42 (diff)
downloadmpv-b4c74fb28e7012d2c682896418e5ee573e3614f7.tar.bz2
mpv-b4c74fb28e7012d2c682896418e5ee573e3614f7.tar.xz
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18005 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/ve_raw.c')
-rw-r--r--libmpcodecs/ve_raw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libmpcodecs/ve_raw.c b/libmpcodecs/ve_raw.c
index aeffee2e64..804266b867 100644
--- a/libmpcodecs/ve_raw.c
+++ b/libmpcodecs/ve_raw.c
@@ -4,6 +4,7 @@
#include "config.h"
#include "mp_msg.h"
+#include "help_mp.h"
#include "codec-cfg.h"
#include "stream.h"
@@ -68,7 +69,7 @@ static int set_format(struct vf_instance_s *vf, unsigned int fmt) {
mux_v->bih->biBitCount = 16;
break;
default:
- printf("ve_raw: raw output with fourcc [%x] not supported!\n", fmt);
+ mp_msg(MSGT_MENCODER, MSGL_INFO, MSGTR_MPCODECS_OutputWithFourccNotSupported, fmt);
mux_v->bih->biCompression = 0;
return 0;
}