[MPlayer-cvslog] r28360 - in trunk: Makefile mencoder.c mpcommon.c mpcommon.h mplayer.c version.sh

Diego Biurrun diego at biurrun.de
Sun Jan 25 22:33:08 CET 2009


On Sun, Jan 25, 2009 at 09:35:59PM +0100, diego wrote:
> 
> Log:
> Factorize print_version().
> 
> --- trunk/mencoder.c	Sun Jan 25 21:10:36 2009	(r28359)
> +++ trunk/mencoder.c	Sun Jan 25 21:35:58 2009	(r28360)
> @@ -421,40 +417,7 @@ user_correct_pts = 0;
>  
> -#if ARCH_X86
> -  mp_msg(MSGT_CPLAYER,MSGL_INFO,"CPUflags: Type: %d MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n",
> -      gCpuCaps.cpuType,gCpuCaps.hasMMX,gCpuCaps.hasMMX2,
> -      gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
> -      gCpuCaps.hasSSE, gCpuCaps.hasSSE2);
> -#ifdef RUNTIME_CPUDETECT
> -  mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithRuntimeDetection);
>  
> --- trunk/mpcommon.c	Sun Jan 25 21:10:36 2009	(r28359)
> +++ trunk/mpcommon.c	Sun Jan 25 21:35:58 2009	(r28360)
> @@ -24,6 +28,47 @@ ass_track_t* ass_track = 0; // current t
>  
> +#if ARCH_X86
> +    mp_msg(MSGT_CPLAYER, MSGL_V,
> +	   "CPUflags:  MMX: %d MMX2: %d 3DNow: %d 3DNow2: %d SSE: %d SSE2: %d\n",
> +	   gCpuCaps.hasMMX, gCpuCaps.hasMMX2,
> +	   gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
> +	   gCpuCaps.hasSSE, gCpuCaps.hasSSE2);
> +#ifdef RUNTIME_CPUDETECT
> +    mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithRuntimeDetection);

Ooops, this contained an unrelated change, namely switching from
MSGL_INFO to MSGL_V.  I will update the commit message in a moment.

I am in favor of this change, so I do not want to revert it.

Diego



More information about the MPlayer-cvslog mailing list