Commit 6e4820dd authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

wingapi: remove WinCE vout

parent bb8711ba
...@@ -365,7 +365,6 @@ $Id$ ...@@ -365,7 +365,6 @@ $Id$
* waveout: simple audio output module for Windows * waveout: simple audio output module for Windows
* win32text: Text renderer using native Win32 API * win32text: Text renderer using native Win32 API
* windrive: Windows logical disc drives * windrive: Windows logical disc drives
* wingapi: Win CE video output
* wingdi: WIN 32 / WIN CE GDI video output * wingdi: WIN 32 / WIN CE GDI video output
* wma_fixed: wma decoder using integer decoder from Rockbox * wma_fixed: wma decoder using integer decoder from Rockbox
* x26410b: H264 10 bit video encoder using X264 * x26410b: H264 10 bit video encoder using X264
......
...@@ -129,9 +129,6 @@ if HAVE_WIN32 ...@@ -129,9 +129,6 @@ if HAVE_WIN32
libvlc_LTLIBRARIES += libwingdi_plugin.la libvlc_LTLIBRARIES += libwingdi_plugin.la
endif endif
SOURCES_wingapi = msw/wingdi.c \
msw/common.c msw/common.h msw/events.c msw/events.h
libdrawable_plugin_la_SOURCES = drawable.c libdrawable_plugin_la_SOURCES = drawable.c
libdrawable_plugin_la_CFLAGS = $(AM_CFLAGS) libdrawable_plugin_la_CFLAGS = $(AM_CFLAGS)
libdrawable_plugin_la_LIBADD = $(AM_LIBADD) libdrawable_plugin_la_LIBADD = $(AM_LIBADD)
......
...@@ -359,10 +359,6 @@ void UpdateRects(vout_display_t *vd, ...@@ -359,10 +359,6 @@ void UpdateRects(vout_display_t *vd,
vout_display_PlacePicture(&place, source, &place_cfg, false); vout_display_PlacePicture(&place, source, &place_cfg, false);
EventThreadUpdateSourceAndPlace(sys->event, source, &place); EventThreadUpdateSourceAndPlace(sys->event, source, &place);
#if defined(MODULE_NAME_IS_wingapi)
if (place.width != vd->fmt.i_width || place.height != vd->fmt.i_height)
vout_display_SendEventPicturesInvalid(vd);
#endif
if (sys->hvideownd) if (sys->hvideownd)
SetWindowPos(sys->hvideownd, 0, SetWindowPos(sys->hvideownd, 0,
......
...@@ -28,40 +28,6 @@ ...@@ -28,40 +28,6 @@
#include <vlc_picture_pool.h> #include <vlc_picture_pool.h>
#include "events.h" #include "events.h"
#ifdef MODULE_NAME_IS_wingapi
typedef struct GXDisplayProperties {
DWORD cxWidth;
DWORD cyHeight;
long cbxPitch;
long cbyPitch;
long cBPP;
DWORD ffFormat;
} GXDisplayProperties;
typedef struct GXScreenRect {
DWORD dwTop;
DWORD dwLeft;
DWORD dwWidth;
DWORD dwHeight;
} GXScreenRect;
# define GX_FULLSCREEN 0x01
# define GX_NORMALKEYS 0x02
# define GX_LANDSCAPEKEYS 0x03
# ifndef kfLandscape
# define kfLandscape 0x8
# define kfPalette 0x10
# define kfDirect 0x20
# define kfDirect555 0x40
# define kfDirect565 0x80
# define kfDirect888 0x100
# define kfDirect444 0x200
# define kfDirectInverted 0x400
# endif
#endif
/***************************************************************************** /*****************************************************************************
* vout_sys_t: video output method descriptor * vout_sys_t: video output method descriptor
***************************************************************************** *****************************************************************************
...@@ -193,7 +159,7 @@ struct vout_display_sys_t ...@@ -193,7 +159,7 @@ struct vout_display_sys_t
bool desktop_requested; bool desktop_requested;
#endif #endif
#if defined(MODULE_NAME_IS_wingdi) || defined(MODULE_NAME_IS_wingapi) #if defined(MODULE_NAME_IS_wingdi)
int i_depth; int i_depth;
/* Our offscreen bitmap and its framebuffer */ /* Our offscreen bitmap and its framebuffer */
...@@ -207,32 +173,9 @@ struct vout_display_sys_t ...@@ -207,32 +173,9 @@ struct vout_display_sys_t
RGBQUAD green; RGBQUAD green;
RGBQUAD blue; RGBQUAD blue;
}; };
# ifdef MODULE_NAME_IS_wingapi
HINSTANCE gapi_dll; /* handle of the opened gapi dll */
/* GAPI functions */
int (*GXOpenDisplay)(HWND hWnd, DWORD dwFlags);
int (*GXCloseDisplay)();
void *(*GXBeginDraw)();
int (*GXEndDraw)();
GXDisplayProperties (*GXGetDisplayProperties)();
int (*GXSuspend)();
int (*GXResume)();
# endif
#endif #endif
}; };
#ifdef MODULE_NAME_IS_wingapi
# define GXOpenDisplay vd->sys->GXOpenDisplay
# define GXCloseDisplay vd->sys->GXCloseDisplay
# define GXBeginDraw vd->sys->GXBeginDraw
# define GXEndDraw vd->sys->GXEndDraw
# define GXGetDisplayProperties vd->sys->GXGetDisplayProperties
# define GXSuspend vd->sys->GXSuspend
# define GXResume vd->sys->GXResume
#endif
/***************************************************************************** /*****************************************************************************
* Prototypes from common.c * Prototypes from common.c
*****************************************************************************/ *****************************************************************************/
......
...@@ -870,15 +870,9 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message, ...@@ -870,15 +870,9 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
return DefWindowProc(hwnd, message, wParam, lParam); return DefWindowProc(hwnd, message, wParam, lParam);
case WM_KILLFOCUS: case WM_KILLFOCUS:
#ifdef MODULE_NAME_IS_wingapi
GXSuspend();
#endif
return 0; return 0;
case WM_SETFOCUS: case WM_SETFOCUS:
#ifdef MODULE_NAME_IS_wingapi
GXResume();
#endif
return 0; return 0;
default: default:
......
...@@ -53,15 +53,9 @@ static void Close(vlc_object_t *); ...@@ -53,15 +53,9 @@ static void Close(vlc_object_t *);
vlc_module_begin () vlc_module_begin ()
set_category(CAT_VIDEO) set_category(CAT_VIDEO)
set_subcategory(SUBCAT_VIDEO_VOUT) set_subcategory(SUBCAT_VIDEO_VOUT)
#ifdef MODULE_NAME_IS_wingapi
set_shortname("GAPI")
set_description(N_("Windows GAPI video output"))
set_capability("vout display", 120)
#else
set_shortname("GDI") set_shortname("GDI")
set_description(N_("Windows GDI video output")) set_description(N_("Windows GDI video output"))
set_capability("vout display", 110) set_capability("vout display", 110)
#endif
set_callbacks(Open, Close) set_callbacks(Open, Close)
vlc_module_end () vlc_module_end ()
...@@ -87,41 +81,6 @@ static int Open(vlc_object_t *object) ...@@ -87,41 +81,6 @@ static int Open(vlc_object_t *object)
if (!sys) if (!sys)
return VLC_ENOMEM; return VLC_ENOMEM;
#ifdef MODULE_NAME_IS_wingapi
/* Load GAPI */
sys->gapi_dll = LoadLibrary(_T("GX.DLL"));
if (!sys->gapi_dll) {
msg_Warn(vd, "failed loading gx.dll");
free(sys);
return VLC_EGENERIC;
}
GXOpenDisplay = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXOpenDisplay@@YAHPAUHWND__@@K@Z"));
GXCloseDisplay = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXCloseDisplay@@YAHXZ"));
GXBeginDraw = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXBeginDraw@@YAPAXXZ"));
GXEndDraw = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXEndDraw@@YAHXZ"));
GXGetDisplayProperties = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXGetDisplayProperties@@YA?AUGXDisplayProperties@@XZ"));
GXSuspend = (void *)GetProcAddress(sys->gapi_dll,
_T("?GXSuspend@@YAHXZ"));
GXResume = GetProcAddress(sys->gapi_dll,
_T("?GXResume@@YAHXZ"));
if (!GXOpenDisplay || !GXCloseDisplay ||
!GXBeginDraw || !GXEndDraw ||
!GXGetDisplayProperties || !GXSuspend || !GXResume) {
msg_Err(vd, "failed GetProcAddress on gapi.dll");
free(sys);
return VLC_EGENERIC;
}
msg_Dbg(vd, "GAPI DLL loaded");
#endif
if (CommonInit(vd)) if (CommonInit(vd))
goto error; goto error;
...@@ -161,10 +120,6 @@ static void Close(vlc_object_t *object) ...@@ -161,10 +120,6 @@ static void Close(vlc_object_t *object)
CommonClean(vd); CommonClean(vd);
#ifdef MODULE_NAME_IS_wingapi
FreeLibrary(vd->sys->gapi_dll);
#endif
free(vd->sys); free(vd->sys);
} }
...@@ -178,9 +133,6 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic ...@@ -178,9 +133,6 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic
{ {
vout_display_sys_t *sys = vd->sys; vout_display_sys_t *sys = vd->sys;
#ifdef MODULE_NAME_IS_wingapi
/* */
#else
#define rect_src vd->sys->rect_src #define rect_src vd->sys->rect_src
#define rect_src_clipped vd->sys->rect_src_clipped #define rect_src_clipped vd->sys->rect_src_clipped
#define rect_dest vd->sys->rect_dest #define rect_dest vd->sys->rect_dest
...@@ -214,7 +166,6 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic ...@@ -214,7 +166,6 @@ static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpic
#undef rect_src_clipped #undef rect_src_clipped
#undef rect_dest #undef rect_dest
#undef rect_dest_clipped #undef rect_dest_clipped
#endif
/* TODO */ /* TODO */
picture_Release(picture); picture_Release(picture);
VLC_UNUSED(subpicture); VLC_UNUSED(subpicture);
...@@ -237,45 +188,6 @@ static void Manage(vout_display_t *vd) ...@@ -237,45 +188,6 @@ static void Manage(vout_display_t *vd)
CommonManage(vd); CommonManage(vd);
} }
#ifdef MODULE_NAME_IS_wingapi
struct picture_sys_t {
vout_display_t *vd;
};
static int Lock(picture_t *picture)
{
vout_display_t *vd = picture->p_sys->vd;
vout_display_sys_t *sys = vd->sys;
/* */
if (sys->rect_dest_clipped.right - sys->rect_dest_clipped.left != vd->fmt.i_width ||
sys->rect_dest_clipped.bottom - sys->rect_dest_clipped.top != vd->fmt.i_height)
return VLC_EGENERIC;
/* */
GXDisplayProperties gxdisplayprop = GXGetDisplayProperties();
uint8_t *p_pic_buffer = GXBeginDraw();
if (!p_pic_buffer) {
msg_Err(vd, "GXBeginDraw error %d ", GetLastError());
return VLC_EGENERIC;
}
p_pic_buffer += sys->rect_dest.top * gxdisplayprop.cbyPitch +
sys->rect_dest.left * gxdisplayprop.cbxPitch;
/* */
picture->p[0].i_pitch = gxdisplayprop.cbyPitch;
picture->p[0].p_pixels = p_pic_buffer;
return VLC_SUCCESS;
}
static void Unlock(picture_t *picture)
{
vout_display_t *vd = picture->p_sys->vd;
GXEndDraw();
}
#endif
static int Init(vout_display_t *vd, static int Init(vout_display_t *vd,
video_format_t *fmt, int width, int height) video_format_t *fmt, int width, int height)
{ {
...@@ -285,13 +197,8 @@ static int Init(vout_display_t *vd, ...@@ -285,13 +197,8 @@ static int Init(vout_display_t *vd,
RECT *display = &sys->rect_display; RECT *display = &sys->rect_display;
display->left = 0; display->left = 0;
display->top = 0; display->top = 0;
#ifdef MODULE_NAME_IS_wingapi
display->right = GXGetDisplayProperties().cxWidth;
display->bottom = GXGetDisplayProperties().cyHeight;
#else
display->right = GetSystemMetrics(SM_CXSCREEN);; display->right = GetSystemMetrics(SM_CXSCREEN);;
display->bottom = GetSystemMetrics(SM_CYSCREEN);; display->bottom = GetSystemMetrics(SM_CYSCREEN);;
#endif
/* Initialize an offscreen bitmap for direct buffer operations. */ /* Initialize an offscreen bitmap for direct buffer operations. */
...@@ -299,14 +206,8 @@ static int Init(vout_display_t *vd, ...@@ -299,14 +206,8 @@ static int Init(vout_display_t *vd,
HDC window_dc = GetDC(sys->hvideownd); HDC window_dc = GetDC(sys->hvideownd);
/* */ /* */
#ifdef MODULE_NAME_IS_wingapi
GXDisplayProperties gx_displayprop = GXGetDisplayProperties();
sys->i_depth = gx_displayprop.cBPP;
#else
sys->i_depth = GetDeviceCaps(window_dc, PLANES) * sys->i_depth = GetDeviceCaps(window_dc, PLANES) *
GetDeviceCaps(window_dc, BITSPIXEL); GetDeviceCaps(window_dc, BITSPIXEL);
#endif
/* */ /* */
msg_Dbg(vd, "GDI depth is %i", sys->i_depth); msg_Dbg(vd, "GDI depth is %i", sys->i_depth);
...@@ -347,14 +248,6 @@ static int Init(vout_display_t *vd, ...@@ -347,14 +248,6 @@ static int Init(vout_display_t *vd,
void *p_pic_buffer; void *p_pic_buffer;
int i_pic_pitch; int i_pic_pitch;
#ifdef MODULE_NAME_IS_wingapi
GXOpenDisplay(sys->hvideownd, GX_FULLSCREEN);
EventThreadUpdateTitle(sys->event, VOUT_TITLE " (WinGAPI output)");
/* Filled by pool::lock() */
p_pic_buffer = NULL;
i_pic_pitch = 0;
#else
/* Initialize offscreen bitmap */ /* Initialize offscreen bitmap */
BITMAPINFO *bi = &sys->bitmapinfo; BITMAPINFO *bi = &sys->bitmapinfo;
memset(bi, 0, sizeof(BITMAPINFO) + 3 * sizeof(RGBQUAD)); memset(bi, 0, sizeof(BITMAPINFO) + 3 * sizeof(RGBQUAD));
...@@ -390,17 +283,10 @@ static int Init(vout_display_t *vd, ...@@ -390,17 +283,10 @@ static int Init(vout_display_t *vd,
ReleaseDC(sys->hvideownd, window_dc); ReleaseDC(sys->hvideownd, window_dc);
EventThreadUpdateTitle(sys->event, VOUT_TITLE " (WinGDI output)"); EventThreadUpdateTitle(sys->event, VOUT_TITLE " (WinGDI output)");
#endif
/* */ /* */
picture_resource_t rsc; picture_resource_t rsc;
memset(&rsc, 0, sizeof(rsc)); memset(&rsc, 0, sizeof(rsc));
#ifdef MODULE_NAME_IS_wingapi
rsc.p_sys = malloc(sizeof(*rsc.p_sys));
if (!rsc.p_sys)
return VLC_EGENERIC;
rsc.p_sys->vd = vd;
#endif
rsc.p[0].p_pixels = p_pic_buffer; rsc.p[0].p_pixels = p_pic_buffer;
rsc.p[0].i_lines = fmt->i_height; rsc.p[0].i_lines = fmt->i_height;
rsc.p[0].i_pitch = i_pic_pitch;; rsc.p[0].i_pitch = i_pic_pitch;;
...@@ -411,10 +297,6 @@ static int Init(vout_display_t *vd, ...@@ -411,10 +297,6 @@ static int Init(vout_display_t *vd,
memset(&cfg, 0, sizeof(cfg)); memset(&cfg, 0, sizeof(cfg));
cfg.picture_count = 1; cfg.picture_count = 1;
cfg.picture = &picture; cfg.picture = &picture;
#ifdef MODULE_NAME_IS_wingapi
cfg.lock = Lock;
cfg.unlock = Unlock;
#endif
sys->pool = picture_pool_NewExtended(&cfg); sys->pool = picture_pool_NewExtended(&cfg);
} else { } else {
free(rsc.p_sys); free(rsc.p_sys);
...@@ -434,13 +316,8 @@ static void Clean(vout_display_t *vd) ...@@ -434,13 +316,8 @@ static void Clean(vout_display_t *vd)
picture_pool_Delete(sys->pool); picture_pool_Delete(sys->pool);
sys->pool = NULL; sys->pool = NULL;
#ifdef MODULE_NAME_IS_wingapi
GXCloseDisplay();
#else
if (sys->off_dc) if (sys->off_dc)
DeleteDC(sys->off_dc); DeleteDC(sys->off_dc);
if (sys->off_bitmap) if (sys->off_bitmap)
DeleteObject(sys->off_bitmap); DeleteObject(sys->off_bitmap);
#endif
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment