diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-07 16:16:14 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-11-07 16:16:14 +0000 |
commit | efb84bce97953bed5732669435bcd279cd34c22e (patch) | |
tree | 4f1ce01fe04b04b5fcf5f3563f199ffc0b9d5d54 /cpudetect.c | |
parent | 1ddc5d1e95b4cc0960f01f8c22a912dc5c53ba41 (diff) | |
download | mpv-efb84bce97953bed5732669435bcd279cd34c22e.tar.bz2 mpv-efb84bce97953bed5732669435bcd279cd34c22e.tar.xz |
Do not show cache-line size message, I've never seen a case where it was useful
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16944 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r-- | cpudetect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c index 09fe43d323..2261059ac1 100644 --- a/cpudetect.c +++ b/cpudetect.c @@ -160,7 +160,7 @@ void GetCpuCaps( CpuCaps *caps) mp_msg(MSGT_CPUDETECT,MSGL_V,"extended cache-info: %d\n",regs2[2]&0x7FFFFFFF); caps->cl_size = regs2[2] & 0xFF; } - mp_msg(MSGT_CPUDETECT,MSGL_INFO,"Detected cache-line size is %u bytes\n",caps->cl_size); + mp_msg(MSGT_CPUDETECT,MSGL_V,"Detected cache-line size is %u bytes\n",caps->cl_size); #if 0 mp_msg(MSGT_CPUDETECT,MSGL_INFO,"cpudetect: MMX=%d MMX2=%d SSE=%d SSE2=%d 3DNow=%d 3DNowExt=%d\n", gCpuCaps.hasMMX, |