# HG changeset patch # User joey # Date 1103661231 0 # Node ID f8670fdf6ab11fb14fdaa3a5bf6bdea76946150c # Parent 9c58002671d5e742d912f2b8c66326900794e54e added -wid support for vo_directx. diff -r 9c58002671d5 -r f8670fdf6ab1 DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Tue Dec 21 20:32:26 2004 +0000 +++ b/DOCS/man/en/mplayer.1 Tue Dec 21 20:33:51 2004 +0000 @@ -2134,6 +2134,9 @@ sign is given after the argument it turns the value into a percentage of the screen size in that direction. It also supports the standard X11 \-geometry option format. +If an external window is specified using the \-wid option, then the x and +y coordinates are relative to the top-left corner of the window rather +than the screen. .br .I NOTE: This option is only supported by the x11, xmga, xv, xvmc, xvidix, @@ -2269,8 +2272,8 @@ Enables VBI for the vesa, dfbmga and svga video output drivers. . .TP -.B \-wid (also see \-guiwid) (X11 only) -This tells MPlayer to attach to an existing X11 window. +.B \-wid (also see \-guiwid) (X11 and DirectX only) +This tells MPlayer to attach to an existing window. Useful to embed MPlayer in a browser (e.g.\& the plugger extension). . .TP diff -r 9c58002671d5 -r f8670fdf6ab1 cfg-mplayer.h --- a/cfg-mplayer.h Tue Dec 21 20:32:26 2004 +0000 +++ b/cfg-mplayer.h Tue Dec 21 20:33:51 2004 +0000 @@ -75,8 +75,8 @@ extern int stop_xscreensaver; extern char **vo_fstype_list; extern int vo_nomouse_input; +#endif extern int WinID; -#endif #ifdef HAVE_MENU extern int menu_startup; @@ -272,9 +272,9 @@ {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL}, + {"wid", &WinID, CONF_TYPE_INT, 0, 0, 0, NULL}, #ifdef HAVE_X11 // x11,xv,xmga,xvidix - {"wid", &WinID, CONF_TYPE_INT, 0, 0, 0, NULL}, {"icelayer", "-icelayer is obsolete. Use -fstype layer: instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, {"stop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"nostop-xscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 1, 0, NULL}, diff -r 9c58002671d5 -r f8670fdf6ab1 libvo/video_out.c --- a/libvo/video_out.c Tue Dec 21 20:32:26 2004 +0000 +++ b/libvo/video_out.c Tue Dec 21 20:33:51 2004 +0000 @@ -45,6 +45,7 @@ int vo_refresh_rate=0; int vo_keepaspect=1; int vo_rootwin=0; +int WinID = -1; int vo_pts=0; // for hw decoding float vo_fps=0; // for mp1e rte diff -r 9c58002671d5 -r f8670fdf6ab1 libvo/vo_directx.c --- a/libvo/vo_directx.c Tue Dec 21 20:32:26 2004 +0000 +++ b/libvo/vo_directx.c Tue Dec 21 20:33:51 2004 +0000 @@ -81,6 +81,7 @@ extern int vidmode; extern int vo_colorkey; extern float monitor_aspect; +extern int WinID; /***************************************************************************** * DirectDraw GUIDs. @@ -510,6 +511,17 @@ rd.top=(vo_screenheight-height)/2; if(ShowCursor(FALSE)>=0)while(ShowCursor(FALSE)>=0){} } + else if (WinID != -1 && vo_geometry) { + POINT pt; + pt.x = vo_dx; + pt.y = vo_dy; + ClientToScreen(hWnd,&pt); + width=d_image_width; + height=d_image_height; + rd.left = pt.x; + rd.top = pt.y; + while(ShowCursor(TRUE)<=0){} + } else { POINT pt; pt.x = 0; //overlayposition relative to the window @@ -628,6 +640,7 @@ } if(!vidmode && !vo_fs){ + if(WinID == -1) { RECT rdw=rd; AdjustWindowRect(&rdw,WS_OVERLAPPEDWINDOW|WS_SIZEBOX,FALSE); // printf("window: %i %i %ix%i\n",rdw.left,rdw.top,rdw.right - rdw.left,rdw.bottom - rdw.top); @@ -636,18 +649,18 @@ rdw.right += monitor_rect.left; rdw.bottom += monitor_rect.top; SetWindowPos(hWnd,(vo_ontop)?HWND_TOPMOST:(vo_rootwin?HWND_BOTTOM:HWND_NOTOPMOST),rdw.left,rdw.top,rdw.right-rdw.left,rdw.bottom-rdw.top,SWP_NOOWNERZORDER); + } } else SetWindowPos(vidmode?hWnd:hWndFS,vo_rootwin?HWND_BOTTOM:HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE|SWP_NOOWNERZORDER); - /*for nonoverlay mode we are finished, for overlay mode we have to display the overlay first*/ - if(nooverlay)return 0; - /*make sure the overlay is inside the screen*/ if(rd.left<0)rd.left=0; if(rd.right>vo_screenwidth)rd.right=vo_screenwidth; if(rd.top<0)rd.top=0; if(rd.bottom>vo_screenheight)rd.bottom=vo_screenheight; + /*for nonoverlay mode we are finished, for overlay mode we have to display the overlay first*/ + if(nooverlay)return 0; // printf("overlay: %i %i %ix%i\n",rd.left,rd.top,rd.right - rd.left,rd.bottom - rd.top); ddrval = g_lpddsOverlay->lpVtbl->UpdateOverlay(g_lpddsOverlay,&rs, g_lpddsPrimary, &rd, dwUpdateFlags, &ovfx); @@ -992,6 +1005,8 @@ wc.lpszClassName = "MPlayer - The Movie Player"; wc.lpszMenuName = NULL; RegisterClass(&wc); + if (WinID != -1) hWnd = WinID; + else hWnd = CreateWindowEx(vidmode?WS_EX_TOPMOST:0, "MPlayer - The Movie Player","",(vidmode)?WS_POPUP:WS_OVERLAPPEDWINDOW| WS_SIZEBOX, CW_USEDEFAULT, CW_USEDEFAULT, 100, 100,NULL,NULL,hInstance,NULL); @@ -1144,6 +1159,8 @@ uint32_t y = mpi->y; uint32_t w = mpi->w; uint32_t h = mpi->h; + + if (WinID != -1) Directx_ManageDisplay(); if((mpi->flags&MP_IMGFLAG_DIRECT)||(mpi->flags&MP_IMGFLAG_DRAW_CALLBACK)) { @@ -1232,12 +1249,15 @@ rd.top = vo_dy; rd.right = rd.left + d_image_width; rd.bottom = rd.top + d_image_height; + if (WinID == -1) { AdjustWindowRect(&rd,WS_OVERLAPPEDWINDOW|WS_SIZEBOX,FALSE); SetWindowPos(hWnd,NULL, vo_dx, vo_dy,rd.right-rd.left,rd.bottom-rd.top,SWP_SHOWWINDOW|SWP_NOOWNERZORDER); + } } else ShowWindow(hWnd,SW_SHOW); if(vo_fs && !vidmode)ShowWindow(hWndFS,SW_SHOW); + if (WinID == -1) SetWindowText(hWnd,title); @@ -1380,6 +1400,7 @@ case VOCTRL_DRAW_IMAGE: return put_image(data); case VOCTRL_ONTOP: + if(WinID != -1) return VO_TRUE; if(vidmode) { mp_msg(MSGT_VO, MSGL_ERR,"ontop has no meaning in exclusive mode\n"); @@ -1392,6 +1413,7 @@ } return VO_TRUE; case VOCTRL_ROOTWIN: + if(WinID != -1) return VO_TRUE; if(vidmode) { mp_msg(MSGT_VO, MSGL_ERR,"rootwin has no meaning in exclusive mode\n"); diff -r 9c58002671d5 -r f8670fdf6ab1 libvo/x11_common.c --- a/libvo/x11_common.c Tue Dec 21 20:32:26 2004 +0000 +++ b/libvo/x11_common.c Tue Dec 21 20:33:51 2004 +0000 @@ -75,7 +75,7 @@ int mLocalDisplay; /* output window id */ -int WinID = -1; +extern int WinID; int vo_mouse_autohide = 0; int vo_wm_type = 0; int vo_fs_type = 0; // needs to be accessible for GUI X11 code