From e651381f1fd0d7d29b31e5e3625af7977886d045 Mon Sep 17 00:00:00 2001 From: Dennis van Amerongen Date: Thu, 14 Feb 2008 00:27:15 +0000 Subject: [PATCH 1/1] * modules/codec/x264.c: more user friendly version reporting of x264 (so no more confusion x264 core:58 would mean the system has 58 cores..) --- modules/codec/x264.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/codec/x264.c b/modules/codec/x264.c index c009e2fe3e..c33d487cfe 100644 --- a/modules/codec/x264.c +++ b/modules/codec/x264.c @@ -715,7 +715,8 @@ static int Open ( vlc_object_t *p_this ) return VLC_EGENERIC; } - msg_Dbg ( p_enc, "x264 core:%d", X264_BUILD ); + /* X264_POINTVER or X264_VERSION are not available */ + msg_Dbg ( p_enc, "version x264 0.%d.X", X264_BUILD ); #if X264_BUILD < 37 if( p_enc->fmt_in.video.i_width % 16 != 0 || -- 2.39.2