[MPlayer-cvslog] r33673 - trunk/libvo/vo_directx.c
reimar
subversion at mplayerhq.hu
Sun Jun 19 20:43:07 CEST 2011
Author: reimar
Date: Sun Jun 19 20:43:07 2011
New Revision: 33673
Log:
Remove left-over code from icon/cursor handling that is
now done by w32_common.c
Modified:
trunk/libvo/vo_directx.c
Modified: trunk/libvo/vo_directx.c
==============================================================================
--- trunk/libvo/vo_directx.c Sun Jun 19 20:31:45 2011 (r33672)
+++ trunk/libvo/vo_directx.c Sun Jun 19 20:43:07 2011 (r33673)
@@ -68,8 +68,6 @@ static RECT rd;
static RECT rs; //rect of our source image
static HBRUSH colorbrush = NULL; // Handle to colorkey brush
static HBRUSH blackbrush = NULL; // Handle to black brush
-static HICON mplayericon = NULL; // Handle to mplayer icon
-static HCURSOR mplayercursor = NULL; // Handle to mplayer cursor
static uint32_t image_width, image_height; //image width and height
static uint32_t d_image_width, d_image_height; //image width and height zoomed
static uint8_t *image=NULL; //image data
@@ -356,10 +354,6 @@ static void uninit(void)
mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>primary released\n");
UnregisterClass(WNDCLASSNAME_WINDOWED, GetModuleHandle(NULL));
UnregisterClass(WNDCLASSNAME_FULLSCREEN, GetModuleHandle(NULL));
- if (mplayericon) DestroyIcon(mplayericon);
- mplayericon = NULL;
- if (mplayercursor) DestroyCursor(mplayercursor);
- mplayercursor = NULL;
if (colorbrush) DeleteObject(colorbrush);
colorbrush = NULL;
mp_msg(MSGT_VO, MSGL_DBG3,"<vo_directx><INFO>GDI resources deleted\n");
@@ -837,13 +831,6 @@ static int preinit(const char *arg)
nooverlay = 1;
}
}
- /*load icon from the main app*/
- if(GetModuleFileName(NULL,exedir,MAX_PATH))
- {
- mplayericon = ExtractIcon( hInstance, exedir, 0 );
- }
- if(!mplayericon)mplayericon=LoadIcon(NULL,IDI_APPLICATION);
- mplayercursor = LoadCursor(NULL, IDC_ARROW);
monitor_rect.right=GetSystemMetrics(SM_CXSCREEN);
monitor_rect.bottom=GetSystemMetrics(SM_CYSCREEN);
More information about the MPlayer-cvslog
mailing list