summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_xvid4.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-01-21 01:27:56 +0100
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-25 03:15:18 +0200
commit69fdb30400cd67922cfb612ed33403f4f91b3d03 (patch)
treeb19537a204a08af51298bded433aab65e7a28a59 /libmpcodecs/vd_xvid4.c
parent83f37b54dedcfdb07684010571137697b3955b09 (diff)
downloadmpv-69fdb30400cd67922cfb612ed33403f4f91b3d03.tar.bz2
mpv-69fdb30400cd67922cfb612ed33403f4f91b3d03.tar.xz
mp_msg: Remove uses of MSGT_MENCODER
Some of the code that could run outside MEcoder used MSGT_MENCODER. Replace those with appropriate MSGT_ types.
Diffstat (limited to 'libmpcodecs/vd_xvid4.c')
-rw-r--r--libmpcodecs/vd_xvid4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vd_xvid4.c b/libmpcodecs/vd_xvid4.c
index ee4ad93f58..779baef105 100644
--- a/libmpcodecs/vd_xvid4.c
+++ b/libmpcodecs/vd_xvid4.c
@@ -149,9 +149,9 @@ static int init(sh_video_t *sh)
/* Gather some information about the host library */
if(xvid_global(NULL, XVID_GBL_INFO, &xvid_gbl_info, NULL) < 0) {
- mp_msg(MSGT_MENCODER,MSGL_INFO, "xvid: could not get information about the library\n");
+ mp_msg(MSGT_DECVIDEO,MSGL_INFO, "xvid: could not get information about the library\n");
} else {
- mp_msg(MSGT_MENCODER,MSGL_INFO, "xvid: using library version %d.%d.%d (build %s)\n",
+ mp_msg(MSGT_DECVIDEO,MSGL_INFO, "xvid: using library version %d.%d.%d (build %s)\n",
XVID_VERSION_MAJOR(xvid_gbl_info.actual_version),
XVID_VERSION_MINOR(xvid_gbl_info.actual_version),
XVID_VERSION_PATCH(xvid_gbl_info.actual_version),