summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorvayne <vayne@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-28 15:31:48 +0000
committervayne <vayne@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-28 15:31:48 +0000
commit42552b211a5408cd81118d55c309056e663edb3d (patch)
treeed19c5646925b60de44eeea204ad3943877239a9 /Gui
parentd1c91ec0124f8f87e48edb454cc05a5af07152c8 (diff)
downloadmpv-42552b211a5408cd81118d55c309056e663edb3d.tar.bz2
mpv-42552b211a5408cd81118d55c309056e663edb3d.tar.xz
avoid code duplication.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21780 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/win32/gui.c37
1 files changed, 2 insertions, 35 deletions
diff --git a/Gui/win32/gui.c b/Gui/win32/gui.c
index 786769498f..473606cc1e 100644
--- a/Gui/win32/gui.c
+++ b/Gui/win32/gui.c
@@ -30,7 +30,6 @@
#include <mplayer.h>
#include <mp_msg.h>
#include <help_mp.h>
-#include <cpudetect.h>
#include <input/input.h>
#include <input/mouse.h>
#include <osdep/keycodes.h>
@@ -51,12 +50,11 @@
# define WM_XBUTTONDBLCLK 0x020D
#endif
-#define MP_TITLE "MPlayer " VERSION " (C) 2000-2006 MPlayer Team"
-
/* Globals / Externs */
extern void renderinfobox(skin_t *skin, window_priv_t *priv);
extern void renderwidget(skin_t *skin, image *dest, widget *item, int state);
extern void mplayer_put_key(int code);
+extern void print_version(void);
extern int WinID;
float sub_aspect;
@@ -105,38 +103,7 @@ void console_toggle(void)
fp = freopen("con", "w", stdout);
*stderr = *fp;
setvbuf(stderr, NULL, _IONBF, 0);
- mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s\n", MP_TITLE);
- GetCpuCaps(&gCpuCaps);
-#ifdef ARCH_X86
- mp_msg(MSGT_CPLAYER,MSGL_INFO,"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_INFO, MSGTR_CompiledWithRuntimeDetection);
-#else
- mp_msg(MSGT_CPLAYER,MSGL_INFO, MSGTR_CompiledWithCPUExtensions);
-#ifdef HAVE_MMX
- mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX");
-#endif
-#ifdef HAVE_MMX2
- mp_msg(MSGT_CPLAYER,MSGL_INFO," MMX2");
-#endif
-#ifdef HAVE_3DNOW
- mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNow");
-#endif
-#ifdef HAVE_3DNOWEX
- mp_msg(MSGT_CPLAYER,MSGL_INFO," 3DNowEx");
-#endif
-#ifdef HAVE_SSE
- mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE");
-#endif
-#ifdef HAVE_SSE2
- mp_msg(MSGT_CPLAYER,MSGL_INFO," SSE2");
-#endif
- mp_msg(MSGT_CPLAYER,MSGL_INFO,"\n\n");
-#endif
-#endif
+ print_version();
console_state = 1;
}
}