summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/ve_raw.c
diff options
context:
space:
mode:
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;
}