2008-11-18 12:23:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Georgi Petrov (gogothebee) <gogothebee@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2011-10-26 09:44:30 +00:00
|
|
|
#include <stdlib.h>
|
2011-11-01 01:38:17 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <stdbool.h>
|
2011-10-26 09:44:30 +00:00
|
|
|
#include <assert.h>
|
2008-11-18 12:23:42 +00:00
|
|
|
#include <d3d9.h>
|
2013-07-19 01:25:04 +00:00
|
|
|
#include <inttypes.h>
|
2008-11-18 12:23:42 +00:00
|
|
|
#include "config.h"
|
2013-08-06 20:41:30 +00:00
|
|
|
#include "mpvcore/options.h"
|
|
|
|
#include "mpvcore/m_option.h"
|
2011-10-26 09:44:30 +00:00
|
|
|
#include "talloc.h"
|
2012-11-09 00:06:43 +00:00
|
|
|
#include "vo.h"
|
|
|
|
#include "video/vfcap.h"
|
|
|
|
#include "video/csputils.h"
|
|
|
|
#include "video/mp_image.h"
|
|
|
|
#include "video/img_format.h"
|
|
|
|
#include "video/memcpy_pic.h"
|
2013-08-06 20:41:30 +00:00
|
|
|
#include "mpvcore/mp_msg.h"
|
2008-11-18 12:23:42 +00:00
|
|
|
#include "w32_common.h"
|
2008-11-21 12:22:16 +00:00
|
|
|
#include "libavutil/common.h"
|
2011-01-26 17:40:52 +00:00
|
|
|
#include "sub/sub.h"
|
2012-10-04 15:16:21 +00:00
|
|
|
#include "bitmap_packer.h"
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
// shaders generated by fxc.exe from d3d_shader_yuv.hlsl
|
|
|
|
#include "d3d_shader_yuv.h"
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2012-12-23 11:46:20 +00:00
|
|
|
#define IMGFMT_IS_Y(x) ((x) == IMGFMT_Y8 || (x) == IMGFMT_Y16)
|
2011-11-01 22:20:38 +00:00
|
|
|
#define IMGFMT_Y_DEPTH(x) ((x) == IMGFMT_Y8 ? 8 : 16)
|
|
|
|
|
|
|
|
#define DEVTYPE D3DDEVTYPE_HAL
|
|
|
|
//#define DEVTYPE D3DDEVTYPE_REF
|
2011-10-26 09:44:30 +00:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
#define D3DFVF_OSD_VERTEX (D3DFVF_XYZ | D3DFVF_TEX1 | D3DFVF_DIFFUSE)
|
2011-10-26 09:44:30 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float x, y, z;
|
|
|
|
D3DCOLOR color;
|
|
|
|
float tu, tv;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
} vertex_osd;
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
#define D3DFVF_VIDEO_VERTEX (D3DFVF_XYZ | D3DFVF_TEX3)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float x, y, z;
|
|
|
|
// pairs of texture coordinates for up to 3 planes
|
|
|
|
float t[3][2];
|
|
|
|
} vertex_video;
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
|
2011-11-01 01:38:17 +00:00
|
|
|
struct d3dtex {
|
|
|
|
// user-requested size
|
|
|
|
int w, h;
|
|
|
|
// allocated texture size
|
|
|
|
int tex_w, tex_h;
|
2011-11-04 10:32:19 +00:00
|
|
|
// D3DPOOL_SYSTEMMEM (or others) texture:
|
2011-11-01 01:38:17 +00:00
|
|
|
// - can be locked in order to write (and even read) data
|
|
|
|
// - can _not_ (probably) be used as texture for rendering
|
|
|
|
// This is always non-NULL if d3dtex_allocate succeeds.
|
|
|
|
IDirect3DTexture9 *system;
|
|
|
|
// D3DPOOL_DEFAULT texture:
|
|
|
|
// - can't be locked (Probably.)
|
|
|
|
// - must be used for rendering
|
|
|
|
// This will be NULL on systems with device_texture_sys != 0.
|
|
|
|
IDirect3DTexture9 *device;
|
|
|
|
};
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
struct texplane {
|
|
|
|
int bytes_per_pixel;
|
|
|
|
int bits_per_pixel;
|
|
|
|
// chroma shifts
|
|
|
|
// e.g. get the plane's width in pixels with (priv->src_width >> shift_x)
|
|
|
|
int shift_x, shift_y;
|
|
|
|
D3DFORMAT d3d_format;
|
|
|
|
struct d3dtex texture;
|
|
|
|
// temporary locking during uploading the frame (e.g. for draw_slice)
|
|
|
|
D3DLOCKED_RECT locked_rect;
|
|
|
|
// value used to clear the image with memset (YUV chroma planes do not use
|
|
|
|
// the value 0 for this)
|
|
|
|
uint8_t clearval;
|
|
|
|
};
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
struct osdpart {
|
|
|
|
enum sub_bitmap_format format;
|
|
|
|
int bitmap_id, bitmap_pos_id;
|
|
|
|
struct d3dtex texture;
|
|
|
|
int num_vertices;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
vertex_osd *vertices;
|
2012-10-04 15:16:21 +00:00
|
|
|
struct bitmap_packer *packer;
|
|
|
|
};
|
|
|
|
|
2008-11-20 15:13:14 +00:00
|
|
|
/* Global variables "priv" structure. I try to keep their count low.
|
2008-11-18 12:23:42 +00:00
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
typedef struct d3d_priv {
|
2013-08-23 21:30:09 +00:00
|
|
|
struct mp_log *log;
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
int opt_prefer_stretchrect;
|
|
|
|
int opt_disable_textures;
|
|
|
|
int opt_disable_stretchrect;
|
|
|
|
int opt_disable_shaders;
|
|
|
|
int opt_only_8bit;
|
|
|
|
int opt_disable_texture_align;
|
2011-11-04 10:32:19 +00:00
|
|
|
// debugging
|
2011-11-04 09:02:12 +00:00
|
|
|
int opt_force_power_of_2;
|
2011-11-04 10:32:19 +00:00
|
|
|
int opt_texture_memory;
|
|
|
|
int opt_swap_discard;
|
|
|
|
int opt_exact_backbuffer;
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
struct vo *vo;
|
|
|
|
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 21:35:51 +00:00
|
|
|
bool have_image;
|
|
|
|
|
2009-02-03 10:17:14 +00:00
|
|
|
D3DLOCKED_RECT locked_rect; /**< The locked offscreen surface */
|
2008-11-20 15:13:14 +00:00
|
|
|
RECT fs_movie_rect; /**< Rect (upscaled) of the movie when displayed
|
|
|
|
in fullscreen */
|
|
|
|
RECT fs_panscan_rect; /**< PanScan source surface cropping in
|
|
|
|
fullscreen */
|
|
|
|
int src_width; /**< Source (movie) width */
|
|
|
|
int src_height; /**< Source (movie) heigth */
|
2012-10-27 20:10:32 +00:00
|
|
|
struct mp_osd_res osd_res;
|
2011-11-01 22:20:38 +00:00
|
|
|
int image_format; /**< mplayer image format */
|
|
|
|
bool use_textures; /**< use 3D texture rendering, instead of
|
|
|
|
StretchRect */
|
|
|
|
bool use_shaders; /**< use shader for YUV color conversion
|
|
|
|
(or possibly for RGB video equalizers) */
|
|
|
|
|
|
|
|
int plane_count;
|
|
|
|
struct texplane planes[3];
|
|
|
|
|
|
|
|
IDirect3DPixelShader9 *pixel_shader;
|
|
|
|
const BYTE *pixel_shader_data;
|
2008-11-20 15:13:14 +00:00
|
|
|
|
|
|
|
D3DFORMAT movie_src_fmt; /**< Movie colorspace format (depends on
|
|
|
|
the movie's codec) */
|
|
|
|
D3DFORMAT desktop_fmt; /**< Desktop (screen) colorspace format.
|
|
|
|
Usually XRGB */
|
2010-01-03 17:00:51 +00:00
|
|
|
|
|
|
|
HANDLE d3d9_dll; /**< d3d9 Library HANDLE */
|
|
|
|
IDirect3D9 * (WINAPI *pDirect3DCreate9)(UINT); /**< pointer to Direct3DCreate9 function */
|
|
|
|
|
2008-11-20 15:13:14 +00:00
|
|
|
LPDIRECT3D9 d3d_handle; /**< Direct3D Handle */
|
|
|
|
LPDIRECT3DDEVICE9 d3d_device; /**< The Direct3D Adapter */
|
2011-11-01 22:20:38 +00:00
|
|
|
bool d3d_in_scene; /**< BeginScene was called, EndScene not */
|
2008-11-20 15:13:14 +00:00
|
|
|
IDirect3DSurface9 *d3d_surface; /**< Offscreen Direct3D Surface. MPlayer
|
|
|
|
renders inside it. Uses colorspace
|
|
|
|
priv->movie_src_fmt */
|
|
|
|
IDirect3DSurface9 *d3d_backbuf; /**< Video card's back buffer (used to
|
|
|
|
display next frame) */
|
2009-01-27 10:02:47 +00:00
|
|
|
int cur_backbuf_width; /**< Current backbuffer width */
|
|
|
|
int cur_backbuf_height; /**< Current backbuffer height */
|
2008-12-09 18:31:52 +00:00
|
|
|
int device_caps_power2_only; /**< 1 = texture sizes have to be power 2
|
|
|
|
0 = texture sizes can be anything */
|
|
|
|
int device_caps_square_only; /**< 1 = textures have to be square
|
|
|
|
0 = textures do not have to be square */
|
|
|
|
int device_texture_sys; /**< 1 = device can texture from system memory
|
|
|
|
0 = device requires shadow */
|
|
|
|
int max_texture_width; /**< from the device capabilities */
|
|
|
|
int max_texture_height; /**< from the device capabilities */
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
D3DMATRIX d3d_colormatrix;
|
|
|
|
struct mp_csp_details colorspace;
|
|
|
|
struct mp_csp_equalizer video_eq;
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
struct osdpart *osd[MAX_OSD_PARTS];
|
2011-11-04 06:33:51 +00:00
|
|
|
} d3d_priv;
|
2008-11-20 15:13:14 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
struct fmt_entry {
|
2008-11-20 15:13:14 +00:00
|
|
|
const unsigned int mplayer_fmt; /**< Given by MPlayer */
|
|
|
|
const D3DFORMAT fourcc; /**< Required by D3D's test function */
|
2011-11-01 22:20:38 +00:00
|
|
|
};
|
2008-11-18 12:23:42 +00:00
|
|
|
|
|
|
|
/* Map table from reported MPlayer format to the required
|
2008-11-20 15:13:14 +00:00
|
|
|
fourcc. This is needed to perform the format query. */
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
static const struct fmt_entry fmt_table[] = {
|
|
|
|
// planar YUV
|
video: decouple internal pixel formats from FourCCs
mplayer's video chain traditionally used FourCCs for pixel formats. For
example, it used IMGFMT_YV12 for 4:2:0 YUV, which was defined to the
string 'YV12' interpreted as unsigned int. Additionally, it used to
encode information into the numeric values of some formats. The RGB
formats had their bit depth and endian encoded into the least
significant byte. Extended planar formats (420P10 etc.) had chroma
shift, endian, and component bit depth encoded. (This has been removed
in recent commits.)
Replace the FourCC mess with a simple enum. Remove all the redundant
formats like YV12/I420/IYUV. Replace some image format names by
something more intuitive, most importantly IMGFMT_YV12 -> IMGFMT_420P.
Add img_fourcc.h, which contains the old IDs for code that actually uses
FourCCs. Change the way demuxers, that output raw video, identify the
video format: they set either MP_FOURCC_RAWVIDEO or MP_FOURCC_IMGFMT to
request the rawvideo decoder, and sh_video->imgfmt specifies the pixel
format. Like the previous hack, this is supposed to avoid the need for
a complete codecs.cfg entry per format, or other lookup tables. (Note
that the RGB raw video FourCCs mostly rely on ffmpeg's mappings for NUT
raw video, but this is still considered better than adding a raw video
decoder - even if trivial, it would be full of annoying lookup tables.)
The TV code has not been tested.
Some corrective changes regarding endian and other image format flags
creep in.
2012-12-23 19:03:30 +00:00
|
|
|
{IMGFMT_420P, MAKEFOURCC('Y','V','1','2')},
|
|
|
|
{IMGFMT_420P, MAKEFOURCC('I','4','2','0')},
|
|
|
|
{IMGFMT_420P, MAKEFOURCC('I','Y','U','V')},
|
|
|
|
{IMGFMT_410P, MAKEFOURCC('Y','V','U','9')},
|
2011-11-01 22:20:38 +00:00
|
|
|
// packed YUV
|
video: decouple internal pixel formats from FourCCs
mplayer's video chain traditionally used FourCCs for pixel formats. For
example, it used IMGFMT_YV12 for 4:2:0 YUV, which was defined to the
string 'YV12' interpreted as unsigned int. Additionally, it used to
encode information into the numeric values of some formats. The RGB
formats had their bit depth and endian encoded into the least
significant byte. Extended planar formats (420P10 etc.) had chroma
shift, endian, and component bit depth encoded. (This has been removed
in recent commits.)
Replace the FourCC mess with a simple enum. Remove all the redundant
formats like YV12/I420/IYUV. Replace some image format names by
something more intuitive, most importantly IMGFMT_YV12 -> IMGFMT_420P.
Add img_fourcc.h, which contains the old IDs for code that actually uses
FourCCs. Change the way demuxers, that output raw video, identify the
video format: they set either MP_FOURCC_RAWVIDEO or MP_FOURCC_IMGFMT to
request the rawvideo decoder, and sh_video->imgfmt specifies the pixel
format. Like the previous hack, this is supposed to avoid the need for
a complete codecs.cfg entry per format, or other lookup tables. (Note
that the RGB raw video FourCCs mostly rely on ffmpeg's mappings for NUT
raw video, but this is still considered better than adding a raw video
decoder - even if trivial, it would be full of annoying lookup tables.)
The TV code has not been tested.
Some corrective changes regarding endian and other image format flags
creep in.
2012-12-23 19:03:30 +00:00
|
|
|
{IMGFMT_YUYV, D3DFMT_YUY2},
|
2008-11-26 16:30:42 +00:00
|
|
|
{IMGFMT_UYVY, D3DFMT_UYVY},
|
2011-11-01 22:20:38 +00:00
|
|
|
// packed RGB
|
2008-11-26 16:27:39 +00:00
|
|
|
{IMGFMT_BGR32, D3DFMT_X8R8G8B8},
|
|
|
|
{IMGFMT_RGB32, D3DFMT_X8B8G8R8},
|
|
|
|
{IMGFMT_BGR24, D3DFMT_R8G8B8}, //untested
|
|
|
|
{IMGFMT_BGR16, D3DFMT_R5G6B5},
|
|
|
|
{IMGFMT_BGR15, D3DFMT_X1R5G5B5},
|
|
|
|
{IMGFMT_BGR8 , D3DFMT_R3G3B2}, //untested
|
2011-11-01 22:20:38 +00:00
|
|
|
// grayscale (can be considered both packed and planar)
|
|
|
|
{IMGFMT_Y8, D3DFMT_L8},
|
|
|
|
{IMGFMT_Y16, D3DFMT_L16},
|
|
|
|
{0},
|
2008-11-18 12:23:42 +00:00
|
|
|
};
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
static const D3DFORMAT osd_fmt_table[SUBBITMAP_COUNT] = {
|
|
|
|
[SUBBITMAP_LIBASS] = D3DFMT_A8,
|
|
|
|
[SUBBITMAP_RGBA] = D3DFMT_A8R8G8B8,
|
|
|
|
};
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
static const bool osd_fmt_supported[SUBBITMAP_COUNT] = {
|
|
|
|
[SUBBITMAP_LIBASS] = true,
|
|
|
|
[SUBBITMAP_RGBA] = true,
|
|
|
|
};
|
2012-10-04 15:16:21 +00:00
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static void update_colorspace(d3d_priv *priv);
|
|
|
|
static void d3d_clear_video_textures(d3d_priv *priv);
|
2011-11-04 09:02:12 +00:00
|
|
|
static bool resize_d3d(d3d_priv *priv);
|
2011-11-04 06:33:51 +00:00
|
|
|
static void uninit(struct vo *vo);
|
|
|
|
static void flip_page(struct vo *vo);
|
2011-11-27 18:58:04 +00:00
|
|
|
static mp_image_t *get_screenshot(d3d_priv *priv);
|
|
|
|
static mp_image_t *get_window_screenshot(d3d_priv *priv);
|
2011-11-04 06:33:51 +00:00
|
|
|
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
static void d3d_matrix_identity(D3DMATRIX *m)
|
|
|
|
{
|
|
|
|
memset(m, 0, sizeof(D3DMATRIX));
|
|
|
|
m->_11 = m->_22 = m->_33 = m->_44 = 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void d3d_matrix_ortho(D3DMATRIX *m, float left, float right,
|
|
|
|
float bottom, float top)
|
|
|
|
{
|
|
|
|
d3d_matrix_identity(m);
|
|
|
|
m->_11 = 2.0f / (right - left);
|
|
|
|
m->_22 = 2.0f / (top - bottom);
|
|
|
|
m->_33 = 1.0f;
|
|
|
|
m->_41 = -(right + left) / (right - left);
|
|
|
|
m->_42 = -(top + bottom) / (top - bottom);
|
|
|
|
m->_43 = 0;
|
|
|
|
m->_44 = 1.0f;
|
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* Direct3D specific implementation functions *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool d3d_begin_scene(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
if (!priv->d3d_in_scene) {
|
|
|
|
if (FAILED(IDirect3DDevice9_BeginScene(priv->d3d_device))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "BeginScene failed.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
priv->d3d_in_scene = true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/** @brief Calculate scaled fullscreen movie rectangle with
|
|
|
|
* preserved aspect ratio.
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void calc_fs_rect(d3d_priv *priv)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2012-10-27 20:10:32 +00:00
|
|
|
struct mp_rect src_rect;
|
|
|
|
struct mp_rect dst_rect;
|
|
|
|
vo_get_src_dst_rects(priv->vo, &src_rect, &dst_rect, &priv->osd_res);
|
|
|
|
|
|
|
|
priv->fs_movie_rect.left = dst_rect.x0;
|
|
|
|
priv->fs_movie_rect.right = dst_rect.x1;
|
|
|
|
priv->fs_movie_rect.top = dst_rect.y0;
|
|
|
|
priv->fs_movie_rect.bottom = dst_rect.y1;
|
|
|
|
priv->fs_panscan_rect.left = src_rect.x0;
|
|
|
|
priv->fs_panscan_rect.right = src_rect.x1;
|
|
|
|
priv->fs_panscan_rect.top = src_rect.y0;
|
|
|
|
priv->fs_panscan_rect.bottom = src_rect.y1;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
2011-10-26 09:44:30 +00:00
|
|
|
// Adjust the texture size *width/*height to fit the requirements of the D3D
|
|
|
|
// device. The texture size is only increased.
|
2011-11-04 06:33:51 +00:00
|
|
|
static void d3d_fix_texture_size(d3d_priv *priv, int *width, int *height)
|
2011-10-26 09:44:30 +00:00
|
|
|
{
|
|
|
|
int tex_width = *width;
|
|
|
|
int tex_height = *height;
|
|
|
|
|
2011-11-01 01:38:17 +00:00
|
|
|
// avoid nasty special cases with 0-sized textures and texture sizes
|
|
|
|
tex_width = FFMAX(tex_width, 1);
|
|
|
|
tex_height = FFMAX(tex_height, 1);
|
|
|
|
|
2011-10-26 09:44:30 +00:00
|
|
|
if (priv->device_caps_power2_only) {
|
|
|
|
tex_width = 1;
|
|
|
|
tex_height = 1;
|
|
|
|
while (tex_width < *width) tex_width <<= 1;
|
|
|
|
while (tex_height < *height) tex_height <<= 1;
|
|
|
|
}
|
|
|
|
if (priv->device_caps_square_only)
|
|
|
|
/* device only supports square textures */
|
2011-11-04 06:33:51 +00:00
|
|
|
tex_width = tex_height = FFMAX(tex_width, tex_height);
|
2011-10-26 09:44:30 +00:00
|
|
|
// better round up to a multiple of 16
|
2011-11-01 22:20:38 +00:00
|
|
|
if (!priv->opt_disable_texture_align) {
|
|
|
|
tex_width = (tex_width + 15) & ~15;
|
|
|
|
tex_height = (tex_height + 15) & ~15;
|
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
|
|
|
*width = tex_width;
|
|
|
|
*height = tex_height;
|
2008-12-02 09:36:47 +00:00
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static void d3dtex_release(d3d_priv *priv, struct d3dtex *tex)
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
|
|
|
if (tex->system)
|
|
|
|
IDirect3DTexture9_Release(tex->system);
|
|
|
|
tex->system = NULL;
|
|
|
|
|
|
|
|
if (tex->device)
|
|
|
|
IDirect3DTexture9_Release(tex->device);
|
|
|
|
tex->device = NULL;
|
|
|
|
|
|
|
|
tex->tex_w = tex->tex_h = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool d3dtex_allocate(d3d_priv *priv, struct d3dtex *tex, D3DFORMAT fmt,
|
|
|
|
int w, int h)
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3dtex_release(priv, tex);
|
2011-11-01 01:38:17 +00:00
|
|
|
|
|
|
|
tex->w = w;
|
|
|
|
tex->h = h;
|
|
|
|
|
|
|
|
int tw = w, th = h;
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_fix_texture_size(priv, &tw, &th);
|
2011-11-01 01:38:17 +00:00
|
|
|
|
2011-11-04 10:32:19 +00:00
|
|
|
int memtype = D3DPOOL_SYSTEMMEM;
|
|
|
|
switch (priv->opt_texture_memory) {
|
|
|
|
case 1: memtype = D3DPOOL_MANAGED; break;
|
|
|
|
case 2: memtype = D3DPOOL_DEFAULT; break;
|
|
|
|
}
|
|
|
|
|
2011-11-01 01:38:17 +00:00
|
|
|
if (FAILED(IDirect3DDevice9_CreateTexture(priv->d3d_device, tw, th, 1,
|
2011-11-04 10:32:19 +00:00
|
|
|
D3DUSAGE_DYNAMIC, fmt, memtype, &tex->system, NULL)))
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Allocating %dx%d texture in system RAM failed.\n", w, h);
|
2011-11-01 01:38:17 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
2011-11-04 10:32:19 +00:00
|
|
|
if (!priv->device_texture_sys && !priv->opt_texture_memory) {
|
2011-11-01 01:38:17 +00:00
|
|
|
if (FAILED(IDirect3DDevice9_CreateTexture(priv->d3d_device, tw, th, 1,
|
|
|
|
D3DUSAGE_DYNAMIC, fmt, D3DPOOL_DEFAULT, &tex->device, NULL)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Allocating %dx%d texture in video RAM failed.\n", w, h);
|
2011-11-01 01:38:17 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tex->tex_w = tw;
|
|
|
|
tex->tex_h = th;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error_exit:
|
2011-11-04 06:33:51 +00:00
|
|
|
d3dtex_release(priv, tex);
|
2011-11-01 01:38:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static IDirect3DBaseTexture9 *d3dtex_get_render_texture(d3d_priv *priv,
|
|
|
|
struct d3dtex *tex)
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
2011-11-01 22:20:38 +00:00
|
|
|
return (IDirect3DBaseTexture9 *)(tex->device ? tex->device : tex->system);
|
2011-11-01 01:38:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy system texture contents to device texture.
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool d3dtex_update(d3d_priv *priv, struct d3dtex *tex)
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
2011-11-01 22:20:38 +00:00
|
|
|
if (!tex->device)
|
2011-11-01 01:38:17 +00:00
|
|
|
return true;
|
|
|
|
return !FAILED(IDirect3DDevice9_UpdateTexture(priv->d3d_device,
|
|
|
|
(IDirect3DBaseTexture9 *)tex->system,
|
|
|
|
(IDirect3DBaseTexture9 *)tex->device));
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static void d3d_unlock_video_objects(d3d_priv *priv)
|
2011-11-01 01:38:17 +00:00
|
|
|
{
|
2011-11-01 22:20:38 +00:00
|
|
|
bool any_failed = false;
|
2011-11-01 01:38:17 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
if (priv->locked_rect.pBits) {
|
|
|
|
if (FAILED(IDirect3DSurface9_UnlockRect(priv->d3d_surface)))
|
|
|
|
any_failed = true;
|
|
|
|
}
|
2011-11-01 01:38:17 +00:00
|
|
|
priv->locked_rect.pBits = NULL;
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
|
|
|
struct texplane *plane = &priv->planes[n];
|
|
|
|
if (plane->locked_rect.pBits) {
|
|
|
|
if (FAILED(IDirect3DTexture9_UnlockRect(plane->texture.system, 0)))
|
|
|
|
any_failed = true;
|
|
|
|
}
|
|
|
|
plane->locked_rect.pBits = NULL;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (any_failed) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Unlocking video objects failed.\n");
|
2011-11-04 06:33:51 +00:00
|
|
|
}
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Free video surface/textures, shaders, etc.
|
2011-11-04 06:33:51 +00:00
|
|
|
static void d3d_destroy_video_objects(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_unlock_video_objects(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2011-11-01 01:38:17 +00:00
|
|
|
if (priv->d3d_surface)
|
|
|
|
IDirect3DSurface9_Release(priv->d3d_surface);
|
|
|
|
priv->d3d_surface = NULL;
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
2011-11-04 06:33:51 +00:00
|
|
|
d3dtex_release(priv, &priv->planes[n].texture);
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->pixel_shader)
|
|
|
|
IDirect3DPixelShader9_Release(priv->pixel_shader);
|
|
|
|
priv->pixel_shader = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Destroy D3D Offscreen and Backbuffer surfaces.
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void destroy_d3d_surfaces(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "destroy_d3d_surfaces called.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_destroy_video_objects(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
for (int n = 0; n < MAX_OSD_PARTS; n++) {
|
|
|
|
struct osdpart *osd = priv->osd[n];
|
|
|
|
d3dtex_release(priv, &osd->texture);
|
|
|
|
osd->bitmap_id = osd->bitmap_pos_id = -1;
|
|
|
|
}
|
2011-11-01 01:38:17 +00:00
|
|
|
|
|
|
|
if (priv->d3d_backbuf)
|
|
|
|
IDirect3DSurface9_Release(priv->d3d_backbuf);
|
|
|
|
priv->d3d_backbuf = NULL;
|
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
priv->d3d_in_scene = false;
|
2011-11-01 01:38:17 +00:00
|
|
|
}
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
// Allocate video surface or textures, and create shaders if needed.
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool d3d_configure_video_objects(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
int n;
|
|
|
|
bool need_clear = false;
|
|
|
|
|
|
|
|
assert(priv->image_format != 0);
|
|
|
|
|
|
|
|
if (priv->use_textures) {
|
|
|
|
for (n = 0; n < priv->plane_count; n++) {
|
|
|
|
struct texplane *plane = &priv->planes[n];
|
|
|
|
|
|
|
|
if (!plane->texture.system) {
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!d3dtex_allocate(priv,
|
|
|
|
&plane->texture,
|
2011-11-01 22:20:38 +00:00
|
|
|
plane->d3d_format,
|
|
|
|
priv->src_width >> plane->shift_x,
|
|
|
|
priv->src_height >> plane->shift_y))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Allocating plane %d"
|
2011-11-01 22:20:38 +00:00
|
|
|
" failed.\n", n);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Allocated plane %d:"
|
2011-11-01 22:20:38 +00:00
|
|
|
" %d bit, shift=%d/%d size=%d/%d (%d/%d).\n", n,
|
|
|
|
plane->bits_per_pixel,
|
|
|
|
plane->shift_x, plane->shift_y,
|
|
|
|
plane->texture.w, plane->texture.h,
|
|
|
|
plane->texture.tex_w, plane->texture.tex_h);
|
|
|
|
|
|
|
|
need_clear = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_clear)
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_clear_video_textures(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
if (priv->pixel_shader_data) {
|
|
|
|
if (!priv->pixel_shader &&
|
|
|
|
FAILED(IDirect3DDevice9_CreatePixelShader(priv->d3d_device,
|
|
|
|
(DWORD *)priv->pixel_shader_data, &priv->pixel_shader)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Failed to create "
|
2011-11-01 22:20:38 +00:00
|
|
|
"YUV conversion pixel shader.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (!priv->d3d_surface &&
|
|
|
|
FAILED(IDirect3DDevice9_CreateOffscreenPlainSurface(
|
|
|
|
priv->d3d_device, priv->src_width, priv->src_height,
|
2011-11-04 06:33:51 +00:00
|
|
|
priv->movie_src_fmt, D3DPOOL_DEFAULT, &priv->d3d_surface, NULL)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Allocating offscreen surface failed.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool d3d_lock_video_textures(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
|
|
|
struct texplane *plane = &priv->planes[n];
|
|
|
|
|
|
|
|
if (!plane->locked_rect.pBits) {
|
|
|
|
if (FAILED(IDirect3DTexture9_LockRect(plane->texture.system, 0,
|
|
|
|
&plane->locked_rect, NULL, 0)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Texture lock failure.\n");
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_unlock_video_objects(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static void d3d_clear_video_textures(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!d3d_lock_video_textures(priv))
|
2011-11-01 22:20:38 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
|
|
|
struct texplane *plane = &priv->planes[n];
|
|
|
|
memset(plane->locked_rect.pBits, plane->clearval,
|
|
|
|
plane->locked_rect.Pitch * plane->texture.tex_h);
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_unlock_video_objects(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
// Recreate and initialize D3D objects if necessary. The amount of work that
|
|
|
|
// needs to be done can be quite different: it could be that full initialization
|
|
|
|
// is required, or that some objects need to be created, or that nothing is
|
|
|
|
// done.
|
|
|
|
static bool create_d3d_surfaces(d3d_priv *priv)
|
2008-12-02 09:36:47 +00:00
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "create_d3d_surfaces called.\n");
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2009-01-27 10:02:47 +00:00
|
|
|
if (!priv->d3d_backbuf &&
|
|
|
|
FAILED(IDirect3DDevice9_GetBackBuffer(priv->d3d_device, 0, 0,
|
2008-12-02 09:36:47 +00:00
|
|
|
D3DBACKBUFFER_TYPE_MONO,
|
2008-12-02 09:46:08 +00:00
|
|
|
&priv->d3d_backbuf))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Allocating backbuffer failed.\n");
|
2008-12-02 09:36:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!d3d_configure_video_objects(priv))
|
2011-11-01 22:20:38 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-12-09 18:31:52 +00:00
|
|
|
/* setup default renderstate */
|
2011-11-04 06:33:51 +00:00
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_SRCBLEND, D3DBLEND_SRCALPHA);
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA);
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_ALPHAFUNC, D3DCMP_GREATER);
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_ALPHAREF, (DWORD)0x0);
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_LIGHTING, FALSE);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
// we use up to 3 samplers for up to 3 YUV planes
|
|
|
|
for (int n = 0; n < 3; n++) {
|
|
|
|
IDirect3DDevice9_SetSamplerState(priv->d3d_device, n, D3DSAMP_MINFILTER,
|
|
|
|
D3DTEXF_LINEAR);
|
|
|
|
IDirect3DDevice9_SetSamplerState(priv->d3d_device, n, D3DSAMP_MAGFILTER,
|
|
|
|
D3DTEXF_LINEAR);
|
|
|
|
IDirect3DDevice9_SetSamplerState(priv->d3d_device, n, D3DSAMP_ADDRESSU,
|
|
|
|
D3DTADDRESS_CLAMP);
|
|
|
|
IDirect3DDevice9_SetSamplerState(priv->d3d_device, n, D3DSAMP_ADDRESSV,
|
|
|
|
D3DTADDRESS_CLAMP);
|
|
|
|
}
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2008-12-02 09:36:47 +00:00
|
|
|
return 1;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
static bool init_d3d(d3d_priv *priv)
|
|
|
|
{
|
|
|
|
D3DDISPLAYMODE disp_mode;
|
|
|
|
D3DCAPS9 disp_caps;
|
|
|
|
DWORD texture_caps;
|
|
|
|
DWORD dev_caps;
|
|
|
|
|
|
|
|
priv->d3d_handle = priv->pDirect3DCreate9(D3D_SDK_VERSION);
|
|
|
|
if (!priv->d3d_handle) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Initializing Direct3D failed.\n");
|
2011-11-04 09:02:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(IDirect3D9_GetAdapterDisplayMode(priv->d3d_handle,
|
|
|
|
D3DADAPTER_DEFAULT,
|
|
|
|
&disp_mode))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Reading display mode failed.\n");
|
2011-11-04 09:02:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->desktop_fmt = disp_mode.Format;
|
|
|
|
priv->cur_backbuf_width = disp_mode.Width;
|
|
|
|
priv->cur_backbuf_height = disp_mode.Height;
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Setting backbuffer dimensions to (%dx%d).\n",
|
|
|
|
disp_mode.Width, disp_mode.Height);
|
2011-11-04 09:02:12 +00:00
|
|
|
|
|
|
|
if (FAILED(IDirect3D9_GetDeviceCaps(priv->d3d_handle,
|
|
|
|
D3DADAPTER_DEFAULT,
|
|
|
|
DEVTYPE,
|
|
|
|
&disp_caps)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Reading display capabilities failed.\n");
|
2011-11-04 09:02:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store relevant information reguarding caps of device */
|
|
|
|
texture_caps = disp_caps.TextureCaps;
|
|
|
|
dev_caps = disp_caps.DevCaps;
|
|
|
|
priv->device_caps_power2_only = (texture_caps & D3DPTEXTURECAPS_POW2) &&
|
|
|
|
!(texture_caps & D3DPTEXTURECAPS_NONPOW2CONDITIONAL);
|
|
|
|
priv->device_caps_square_only = texture_caps & D3DPTEXTURECAPS_SQUAREONLY;
|
|
|
|
priv->device_texture_sys = dev_caps & D3DDEVCAPS_TEXTURESYSTEMMEMORY;
|
|
|
|
priv->max_texture_width = disp_caps.MaxTextureWidth;
|
|
|
|
priv->max_texture_height = disp_caps.MaxTextureHeight;
|
|
|
|
|
|
|
|
if (priv->opt_force_power_of_2)
|
|
|
|
priv->device_caps_power2_only = 1;
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "device_caps_power2_only %d, device_caps_square_only %d\n"
|
|
|
|
"device_texture_sys %d\n"
|
|
|
|
"max_texture_width %d, max_texture_height %d\n",
|
|
|
|
priv->device_caps_power2_only, priv->device_caps_square_only,
|
|
|
|
priv->device_texture_sys, priv->max_texture_width,
|
|
|
|
priv->max_texture_height);
|
2011-11-04 09:02:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-02 09:36:47 +00:00
|
|
|
/** @brief Fill D3D Presentation parameters
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void fill_d3d_presentparams(d3d_priv *priv,
|
|
|
|
D3DPRESENT_PARAMETERS *present_params)
|
2008-12-02 09:36:47 +00:00
|
|
|
{
|
|
|
|
/* Prepare Direct3D initialization parameters. */
|
|
|
|
memset(present_params, 0, sizeof(D3DPRESENT_PARAMETERS));
|
|
|
|
present_params->Windowed = TRUE;
|
2011-11-04 10:32:19 +00:00
|
|
|
present_params->SwapEffect =
|
|
|
|
priv->opt_swap_discard ? D3DSWAPEFFECT_DISCARD : D3DSWAPEFFECT_COPY;
|
2008-12-02 09:36:47 +00:00
|
|
|
present_params->Flags = D3DPRESENTFLAG_VIDEO;
|
2012-04-14 11:39:53 +00:00
|
|
|
present_params->hDeviceWindow = priv->vo->w32->window;
|
2009-01-27 10:02:47 +00:00
|
|
|
present_params->BackBufferWidth = priv->cur_backbuf_width;
|
|
|
|
present_params->BackBufferHeight = priv->cur_backbuf_height;
|
2008-12-02 09:36:47 +00:00
|
|
|
present_params->MultiSampleType = D3DMULTISAMPLE_NONE;
|
|
|
|
present_params->PresentationInterval = D3DPRESENT_INTERVAL_ONE;
|
|
|
|
present_params->BackBufferFormat = priv->desktop_fmt;
|
|
|
|
present_params->BackBufferCount = 1;
|
|
|
|
present_params->EnableAutoDepthStencil = FALSE;
|
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2009-01-27 10:02:47 +00:00
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
// Create a new backbuffer. Create or Reset the D3D device.
|
|
|
|
static bool change_d3d_backbuffer(d3d_priv *priv)
|
2009-01-27 10:02:47 +00:00
|
|
|
{
|
|
|
|
D3DPRESENT_PARAMETERS present_params;
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
int window_w = priv->vo->dwidth;
|
|
|
|
int window_h = priv->vo->dheight;
|
2009-01-27 10:02:47 +00:00
|
|
|
|
|
|
|
/* Grow the backbuffer in the required dimension. */
|
2011-11-04 06:33:51 +00:00
|
|
|
if (window_w > priv->cur_backbuf_width)
|
|
|
|
priv->cur_backbuf_width = window_w;
|
2009-01-27 10:02:47 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (window_h > priv->cur_backbuf_height)
|
|
|
|
priv->cur_backbuf_height = window_h;
|
2009-01-27 10:02:47 +00:00
|
|
|
|
2011-11-04 10:32:19 +00:00
|
|
|
if (priv->opt_exact_backbuffer) {
|
|
|
|
priv->cur_backbuf_width = window_w;
|
|
|
|
priv->cur_backbuf_height = window_h;
|
|
|
|
}
|
|
|
|
|
2009-01-27 10:02:47 +00:00
|
|
|
/* The grown backbuffer dimensions are ready and fill_d3d_presentparams
|
|
|
|
* will use them, so we can reset the device.
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
fill_d3d_presentparams(priv, &present_params);
|
2009-01-27 10:02:47 +00:00
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
if (!priv->d3d_device) {
|
|
|
|
if (FAILED(IDirect3D9_CreateDevice(priv->d3d_handle,
|
|
|
|
D3DADAPTER_DEFAULT,
|
2012-04-14 11:39:53 +00:00
|
|
|
DEVTYPE, priv->vo->w32->window,
|
2011-12-26 23:26:48 +00:00
|
|
|
D3DCREATE_SOFTWARE_VERTEXPROCESSING
|
|
|
|
| D3DCREATE_FPU_PRESERVE,
|
2011-11-04 09:02:12 +00:00
|
|
|
&present_params, &priv->d3d_device)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Creating Direct3D device failed.\n");
|
2011-11-04 09:02:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (FAILED(IDirect3DDevice9_Reset(priv->d3d_device, &present_params))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Reseting Direct3D device failed.\n");
|
2011-11-04 09:02:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2009-01-27 10:02:47 +00:00
|
|
|
}
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "New backbuffer (%dx%d), VO (%dx%d)\n",
|
|
|
|
present_params.BackBufferWidth, present_params.BackBufferHeight,
|
|
|
|
window_w, window_h);
|
2009-01-27 10:02:47 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-02 09:36:47 +00:00
|
|
|
/** @brief Reconfigure the whole Direct3D. Called only
|
2011-11-04 09:02:12 +00:00
|
|
|
* when the video adapter becomes uncooperative. ("Lost" devices)
|
2008-12-02 09:36:47 +00:00
|
|
|
* @return 1 on success, 0 on failure
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static int reconfigure_d3d(d3d_priv *priv)
|
2008-12-02 09:36:47 +00:00
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "reconfigure_d3d called.\n");
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
destroy_d3d_surfaces(priv);
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-12-31 16:14:04 +00:00
|
|
|
if (priv->d3d_device)
|
|
|
|
IDirect3DDevice9_Release(priv->d3d_device);
|
2008-12-09 18:36:15 +00:00
|
|
|
priv->d3d_device = NULL;
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
// Force complete destruction of the D3D state.
|
|
|
|
// Note: this step could be omitted. The resize_d3d call below would detect
|
|
|
|
// that d3d_device is NULL, and would properly recreate it. I'm not sure why
|
|
|
|
// the following code to release and recreate the d3d_handle exists.
|
2011-12-31 16:14:04 +00:00
|
|
|
if (priv->d3d_handle)
|
|
|
|
IDirect3D9_Release(priv->d3d_handle);
|
2011-11-04 09:02:12 +00:00
|
|
|
priv->d3d_handle = NULL;
|
|
|
|
if (!init_d3d(priv))
|
2009-02-03 10:14:44 +00:00
|
|
|
return 0;
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
// Proper re-initialization.
|
|
|
|
if (!resize_d3d(priv))
|
2008-12-02 09:36:47 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
// Resize Direct3D context on window resize.
|
|
|
|
// This function also is called when major initializations need to be done.
|
|
|
|
static bool resize_d3d(d3d_priv *priv)
|
2008-12-02 09:36:47 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
D3DVIEWPORT9 vp = {0, 0, priv->vo->dwidth, priv->vo->dheight, 0, 1};
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "resize_d3d called.\n");
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2009-01-27 10:02:47 +00:00
|
|
|
/* Make sure that backbuffer is large enough to accomodate the new
|
|
|
|
viewport dimensions. Grow it if necessary. */
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 10:32:19 +00:00
|
|
|
bool backbuf_resize = priv->vo->dwidth > priv->cur_backbuf_width ||
|
|
|
|
priv->vo->dheight > priv->cur_backbuf_height;
|
|
|
|
|
|
|
|
if (priv->opt_exact_backbuffer) {
|
|
|
|
backbuf_resize = priv->vo->dwidth != priv->cur_backbuf_width ||
|
|
|
|
priv->vo->dheight != priv->cur_backbuf_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (backbuf_resize || !priv->d3d_device)
|
2011-11-04 06:33:51 +00:00
|
|
|
{
|
2011-11-04 09:02:12 +00:00
|
|
|
destroy_d3d_surfaces(priv);
|
|
|
|
if (!change_d3d_backbuffer(priv))
|
2009-02-03 10:16:03 +00:00
|
|
|
return 0;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
if (!priv->d3d_device)
|
|
|
|
return 1;
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!create_d3d_surfaces(priv))
|
2008-11-18 12:23:42 +00:00
|
|
|
return 0;
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (FAILED(IDirect3DDevice9_SetViewport(priv->d3d_device, &vp))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Setting viewport failed.\n");
|
2009-02-03 10:14:44 +00:00
|
|
|
return 0;
|
2009-01-27 10:02:47 +00:00
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
// so that screen coordinates map to D3D ones
|
|
|
|
D3DMATRIX view;
|
|
|
|
d3d_matrix_ortho(&view, 0.5f, vp.Width + 0.5f, vp.Height + 0.5f, 0.5f);
|
|
|
|
IDirect3DDevice9_SetTransform(priv->d3d_device, D3DTS_VIEW, &view);
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
calc_fs_rect(priv);
|
|
|
|
priv->vo->want_redraw = true;
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Uninitialize Direct3D and close the window.
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void uninit_d3d(d3d_priv *priv)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "uninit_d3d called.\n");
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
destroy_d3d_surfaces(priv);
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2008-12-09 18:41:41 +00:00
|
|
|
if (priv->d3d_device)
|
2008-12-02 09:36:47 +00:00
|
|
|
IDirect3DDevice9_Release(priv->d3d_device);
|
2008-12-09 18:41:41 +00:00
|
|
|
priv->d3d_device = NULL;
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2008-12-02 09:40:09 +00:00
|
|
|
if (priv->d3d_handle) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Stopping Direct3D.\n");
|
2008-11-20 15:13:14 +00:00
|
|
|
IDirect3D9_Release(priv->d3d_handle);
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
2008-12-09 18:44:48 +00:00
|
|
|
priv->d3d_handle = NULL;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static uint32_t d3d_draw_frame(d3d_priv *priv)
|
2011-10-26 13:19:58 +00:00
|
|
|
{
|
2011-11-01 22:20:38 +00:00
|
|
|
int n;
|
|
|
|
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
if (!priv->d3d_device)
|
|
|
|
return VO_TRUE;
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!d3d_begin_scene(priv))
|
2008-11-23 18:45:01 +00:00
|
|
|
return VO_ERROR;
|
2008-11-23 18:13:56 +00:00
|
|
|
|
2013-02-24 14:29:06 +00:00
|
|
|
IDirect3DDevice9_Clear(priv->d3d_device, 0, NULL, D3DCLEAR_TARGET, 0, 0, 0);
|
2008-11-24 09:44:33 +00:00
|
|
|
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 21:35:51 +00:00
|
|
|
if (!priv->have_image)
|
|
|
|
return VO_TRUE;
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
if (priv->use_textures) {
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
for (n = 0; n < priv->plane_count; n++) {
|
|
|
|
IDirect3DDevice9_SetTexture(priv->d3d_device, n,
|
2011-11-04 06:33:51 +00:00
|
|
|
d3dtex_get_render_texture(priv, &priv->planes[n].texture));
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RECT rm = priv->fs_movie_rect;
|
|
|
|
RECT rs = priv->fs_panscan_rect;
|
|
|
|
|
|
|
|
vertex_video vb[] = {
|
|
|
|
{ rm.left, rm.top, 0.0f},
|
|
|
|
{ rm.right, rm.top, 0.0f},
|
|
|
|
{ rm.left, rm.bottom, 0.0f},
|
|
|
|
{ rm.right, rm.bottom, 0.0f}
|
|
|
|
};
|
|
|
|
|
|
|
|
float texc[4][2] = {
|
|
|
|
{ rs.left, rs.top},
|
|
|
|
{ rs.right, rs.top},
|
|
|
|
{ rs.left, rs.bottom},
|
|
|
|
{ rs.right, rs.bottom}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (n = 0; n < priv->plane_count; n++) {
|
|
|
|
float s_x = (1.0f / (1 << priv->planes[n].shift_x))
|
|
|
|
/ priv->planes[n].texture.tex_w;
|
|
|
|
float s_y = (1.0f / (1 << priv->planes[n].shift_y))
|
|
|
|
/ priv->planes[n].texture.tex_h;
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
vb[i].t[n][0] = texc[i][0] * s_x;
|
|
|
|
vb[i].t[n][1] = texc[i][1] * s_y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->pixel_shader) {
|
|
|
|
IDirect3DDevice9_SetPixelShader(priv->d3d_device, priv->pixel_shader);
|
|
|
|
IDirect3DDevice9_SetPixelShaderConstantF(priv->d3d_device, 0,
|
|
|
|
&priv->d3d_colormatrix._11,
|
|
|
|
4);
|
|
|
|
}
|
|
|
|
|
|
|
|
IDirect3DDevice9_SetFVF(priv->d3d_device, D3DFVF_VIDEO_VERTEX);
|
|
|
|
IDirect3DDevice9_DrawPrimitiveUP(priv->d3d_device, D3DPT_TRIANGLESTRIP,
|
|
|
|
2, &vb[0], sizeof(vertex_video));
|
|
|
|
|
|
|
|
IDirect3DDevice9_SetPixelShader(priv->d3d_device, NULL);
|
|
|
|
|
|
|
|
for (n = 0; n < priv->plane_count; n++) {
|
|
|
|
IDirect3DDevice9_SetTexture(priv->d3d_device, n, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (FAILED(IDirect3DDevice9_StretchRect(priv->d3d_device,
|
|
|
|
priv->d3d_surface,
|
|
|
|
&priv->fs_panscan_rect,
|
|
|
|
priv->d3d_backbuf,
|
|
|
|
&priv->fs_movie_rect,
|
|
|
|
D3DTEXF_LINEAR))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Copying frame to the backbuffer failed.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
return VO_ERROR;
|
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return VO_TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
// Return the high byte of the value that represents white in chroma (U/V)
|
|
|
|
static int get_chroma_clear_val(int bit_depth)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2011-11-01 22:20:38 +00:00
|
|
|
return 1 << (bit_depth - 1 & 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
// this macro is supposed to work on all formats supported by 3D rendering, and
|
|
|
|
// that produce "reasonable" output (i.e. no mixed up colors)
|
2011-11-04 06:33:51 +00:00
|
|
|
#define IMGFMT_IS_ANY_RND(x) \
|
2012-12-24 00:10:57 +00:00
|
|
|
(IMGFMT_IS_RGB(x) || IMGFMT_IS_Y(x))
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
// pixel size in bit for any IMGFMT_IS_ANY_RND(x)==true
|
|
|
|
// we assume that the actual pixel strides are always aligned on bytes
|
|
|
|
static int imgfmt_any_rnd_depth(int fmt)
|
|
|
|
{
|
|
|
|
if (IMGFMT_IS_RGB(fmt))
|
|
|
|
return IMGFMT_RGB_DEPTH(fmt);
|
|
|
|
if (IMGFMT_IS_Y(fmt))
|
|
|
|
return IMGFMT_Y_DEPTH(fmt);
|
|
|
|
assert(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static D3DFORMAT check_format(d3d_priv *priv, uint32_t movie_fmt,
|
|
|
|
bool as_texture)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
const char *type = as_texture ? "texture rendering" : "StretchRect";
|
|
|
|
const struct fmt_entry *cur = &fmt_table[0];
|
|
|
|
|
|
|
|
// Don't try to handle weird packed texture formats (although I don't know
|
|
|
|
// if D3D9 would even accept any such format for 3D rendering; and we
|
|
|
|
// certainly don't try any tricks like matching it to RGB formats and
|
|
|
|
// applying a YUV conversion matrix)
|
|
|
|
if (as_texture && !IMGFMT_IS_ANY_RND(movie_fmt))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (cur->mplayer_fmt) {
|
|
|
|
if (cur->mplayer_fmt == movie_fmt) {
|
|
|
|
HRESULT res;
|
|
|
|
if (as_texture) {
|
|
|
|
res = IDirect3D9_CheckDeviceFormat(priv->d3d_handle,
|
|
|
|
D3DADAPTER_DEFAULT,
|
|
|
|
DEVTYPE,
|
|
|
|
priv->desktop_fmt,
|
|
|
|
D3DUSAGE_DYNAMIC | D3DUSAGE_QUERY_FILTER,
|
|
|
|
D3DRTYPE_TEXTURE,
|
|
|
|
cur->fourcc);
|
|
|
|
} else {
|
|
|
|
/* Test conversion from Movie colorspace to
|
|
|
|
* display's target colorspace. */
|
|
|
|
res = IDirect3D9_CheckDeviceFormatConversion(priv->d3d_handle,
|
|
|
|
D3DADAPTER_DEFAULT,
|
|
|
|
DEVTYPE,
|
|
|
|
cur->fourcc,
|
|
|
|
priv->desktop_fmt);
|
|
|
|
}
|
|
|
|
if (FAILED(res)) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Rejected image format "
|
2011-11-01 22:20:38 +00:00
|
|
|
"(%s): %s\n", type, vo_format_name(cur->mplayer_fmt));
|
|
|
|
return 0;
|
2008-11-20 15:13:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_DBG(priv, "Accepted image format (%s): %s\n",
|
|
|
|
type, vo_format_name(cur->mplayer_fmt));
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
return cur->fourcc;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
2011-11-01 22:20:38 +00:00
|
|
|
cur++;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
// Check whether YUV conversion with shaders can be done.
|
|
|
|
// Returns the format the individual planes should use (or 0 on failure)
|
2011-11-04 06:33:51 +00:00
|
|
|
static D3DFORMAT check_shader_conversion(d3d_priv *priv, uint32_t fmt)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
if (priv->opt_disable_shaders)
|
|
|
|
return 0;
|
2012-12-24 00:10:57 +00:00
|
|
|
struct mp_imgfmt_desc desc = mp_imgfmt_get_desc(fmt);
|
|
|
|
if (!(desc.flags & MP_IMGFLAG_YUV_P) || !(desc.flags & MP_IMGFLAG_NE))
|
2011-11-01 22:20:38 +00:00
|
|
|
return 0;
|
2012-12-24 00:10:57 +00:00
|
|
|
if (desc.num_planes != 3)
|
|
|
|
return 0;
|
|
|
|
int component_bits = desc.plane_bits;
|
2011-11-01 22:20:38 +00:00
|
|
|
if (component_bits < 8 || component_bits > 16)
|
|
|
|
return 0;
|
|
|
|
bool is_8bit = component_bits == 8;
|
|
|
|
if (!is_8bit && priv->opt_only_8bit)
|
|
|
|
return 0;
|
2012-12-23 11:46:20 +00:00
|
|
|
int texfmt = is_8bit ? IMGFMT_Y8 : IMGFMT_Y16;
|
2011-11-06 06:40:06 +00:00
|
|
|
return check_format(priv, texfmt, true);
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return if the image format can be used. If it can, decide which rendering
|
|
|
|
// and conversion mode to use.
|
|
|
|
// If initialize is true, actually setup all variables to use the picked
|
|
|
|
// rendering mode.
|
2011-11-04 06:33:51 +00:00
|
|
|
static bool init_rendering_mode(d3d_priv *priv, uint32_t fmt, bool initialize)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
int n;
|
2011-11-04 06:33:51 +00:00
|
|
|
int blit_d3dfmt = check_format(priv, fmt, false);
|
|
|
|
int texture_d3dfmt = check_format(priv, fmt, true);
|
|
|
|
int shader_d3dfmt = check_shader_conversion(priv, fmt);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
if (priv->opt_disable_textures)
|
|
|
|
texture_d3dfmt = 0;
|
|
|
|
if (priv->opt_disable_shaders)
|
|
|
|
shader_d3dfmt = 0;
|
|
|
|
if (priv->opt_disable_stretchrect)
|
|
|
|
blit_d3dfmt = 0;
|
|
|
|
|
|
|
|
if (!(blit_d3dfmt || shader_d3dfmt || texture_d3dfmt))
|
|
|
|
return false;
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Accepted rendering methods for "
|
2011-11-01 22:20:38 +00:00
|
|
|
"format='%s': StretchRect=%#x, Texture=%#x, Texture+Shader=%#x.\n",
|
|
|
|
vo_format_name(fmt), blit_d3dfmt, texture_d3dfmt, shader_d3dfmt);
|
|
|
|
|
|
|
|
if (!initialize)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// initialization doesn't fail beyond this point
|
|
|
|
|
|
|
|
priv->use_shaders = false;
|
|
|
|
priv->use_textures = false;
|
|
|
|
priv->movie_src_fmt = 0;
|
|
|
|
priv->pixel_shader_data = NULL;
|
|
|
|
priv->plane_count = 0;
|
|
|
|
priv->image_format = fmt;
|
|
|
|
|
|
|
|
if (blit_d3dfmt && priv->opt_prefer_stretchrect)
|
|
|
|
texture_d3dfmt = shader_d3dfmt = 0;
|
|
|
|
|
|
|
|
if (texture_d3dfmt) {
|
|
|
|
priv->use_textures = true;
|
|
|
|
} else if (shader_d3dfmt) {
|
|
|
|
priv->use_textures = true;
|
|
|
|
priv->use_shaders = true;
|
|
|
|
} else {
|
|
|
|
assert(!!blit_d3dfmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->use_textures) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Using 3D rendering.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
struct texplane *planes = &priv->planes[0];
|
|
|
|
planes[0].shift_x = planes[0].shift_y = 0;
|
|
|
|
planes[0].clearval = 0;
|
|
|
|
|
|
|
|
if (!priv->use_shaders) {
|
|
|
|
assert(IMGFMT_IS_ANY_RND(priv->image_format));
|
|
|
|
priv->plane_count = 1;
|
|
|
|
planes[0].bits_per_pixel = imgfmt_any_rnd_depth(priv->image_format);
|
|
|
|
planes[0].d3d_format = texture_d3dfmt;
|
|
|
|
} else {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Using YUV shaders.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2012-12-24 00:10:57 +00:00
|
|
|
struct mp_imgfmt_desc desc = mp_imgfmt_get_desc(priv->image_format);
|
2011-11-01 22:20:38 +00:00
|
|
|
priv->plane_count = 3;
|
|
|
|
for (n = 0; n < 3; n++) {
|
|
|
|
planes[n].d3d_format = shader_d3dfmt;
|
2012-12-24 00:10:57 +00:00
|
|
|
planes[n].bits_per_pixel = desc.plane_bits;
|
|
|
|
planes[n].shift_x = desc.xs[n];
|
|
|
|
planes[n].shift_y = desc.ys[n];
|
|
|
|
if (n > 0)
|
|
|
|
planes[n].clearval = get_chroma_clear_val(desc.plane_bits);
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
2012-12-23 11:46:20 +00:00
|
|
|
priv->pixel_shader_data = d3d_shader_yuv;
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; n < priv->plane_count; n++) {
|
|
|
|
planes[n].bytes_per_pixel = (planes[n].bits_per_pixel + 7) / 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Using StretchRect.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
priv->movie_src_fmt = blit_d3dfmt;
|
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
update_colorspace(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2011-10-22 21:44:27 +00:00
|
|
|
|
|
|
|
/** @brief Query if movie colorspace is supported by the HW.
|
|
|
|
* @return 0 on failure, device capabilities (not probed
|
|
|
|
* currently) on success.
|
|
|
|
*/
|
2012-11-04 15:24:18 +00:00
|
|
|
static int query_format(struct vo *vo, uint32_t movie_fmt)
|
2011-10-22 21:44:27 +00:00
|
|
|
{
|
2012-11-04 15:24:18 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!init_rendering_mode(priv, movie_fmt, false))
|
2011-10-22 21:44:27 +00:00
|
|
|
return 0;
|
|
|
|
|
2013-03-01 10:16:01 +00:00
|
|
|
return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW;
|
2011-10-22 21:44:27 +00:00
|
|
|
}
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* libvo Control / Callback functions *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
static void update_colorspace(d3d_priv *priv)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
|
|
|
float coeff[3][4];
|
|
|
|
struct mp_csp_params csp = { .colorspace = priv->colorspace };
|
|
|
|
mp_csp_copy_equalizer_values(&csp, &priv->video_eq);
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
if (priv->use_shaders) {
|
2012-12-23 11:46:20 +00:00
|
|
|
csp.input_bits = priv->planes[0].bits_per_pixel;
|
|
|
|
csp.texture_bits = (csp.input_bits + 7) & ~7;
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2012-03-26 02:12:26 +00:00
|
|
|
mp_get_yuv2rgb_coeffs(&csp, coeff);
|
|
|
|
for (int row = 0; row < 3; row++) {
|
|
|
|
for (int col = 0; col < 4; col++) {
|
|
|
|
priv->d3d_colormatrix.m[row][col] = coeff[row][col];
|
|
|
|
}
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/** @brief libvo Callback: Preinitialize the video card.
|
|
|
|
* Preinit the hardware just enough to be queried about
|
|
|
|
* supported formats.
|
|
|
|
*
|
|
|
|
* @return 0 on success, -1 on failure
|
|
|
|
*/
|
2008-11-20 15:13:14 +00:00
|
|
|
|
2013-07-22 20:52:42 +00:00
|
|
|
static int preinit(struct vo *vo)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2013-07-21 23:34:48 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
priv->vo = vo;
|
2013-08-23 21:30:09 +00:00
|
|
|
priv->log = vo->log;
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
for (int n = 0; n < MAX_OSD_PARTS; n++) {
|
|
|
|
struct osdpart *osd = talloc_ptrtype(priv, osd);
|
|
|
|
*osd = (struct osdpart) {
|
|
|
|
.packer = talloc_zero(osd, struct bitmap_packer),
|
|
|
|
};
|
|
|
|
priv->osd[n] = osd;
|
|
|
|
}
|
|
|
|
|
2010-01-03 17:00:51 +00:00
|
|
|
priv->d3d9_dll = LoadLibraryA("d3d9.dll");
|
|
|
|
if (!priv->d3d9_dll) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Unable to dynamically load d3d9.dll\n");
|
2010-01-03 17:04:04 +00:00
|
|
|
goto err_out;
|
2010-01-03 17:00:51 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
priv->pDirect3DCreate9 = (void *)GetProcAddress(priv->d3d9_dll,
|
|
|
|
"Direct3DCreate9");
|
2010-01-03 17:00:51 +00:00
|
|
|
if (!priv->pDirect3DCreate9) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Unable to find entry point of Direct3DCreate9\n");
|
2010-01-03 17:04:04 +00:00
|
|
|
goto err_out;
|
2010-01-03 17:00:51 +00:00
|
|
|
}
|
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
if (!init_d3d(priv))
|
2010-01-03 17:04:04 +00:00
|
|
|
goto err_out;
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/* w32_common framework call. Configures window on the screen, gets
|
|
|
|
* fullscreen dimensions and does other useful stuff.
|
|
|
|
*/
|
2012-04-14 11:39:53 +00:00
|
|
|
if (!vo_w32_init(vo)) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Configuring onscreen window failed.\n");
|
2010-01-03 17:04:04 +00:00
|
|
|
goto err_out;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2010-01-03 17:04:04 +00:00
|
|
|
|
|
|
|
err_out:
|
2011-11-04 06:33:51 +00:00
|
|
|
uninit(vo);
|
2010-01-03 17:04:04 +00:00
|
|
|
return -1;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief libvo Callback: Handle control requests.
|
|
|
|
* @return VO_TRUE on success, VO_NOTIMPL when not implemented
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static int control(struct vo *vo, uint32_t request, void *data)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
|
2008-11-20 15:13:14 +00:00
|
|
|
switch (request) {
|
2011-10-26 13:19:58 +00:00
|
|
|
case VOCTRL_REDRAW_FRAME:
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_draw_frame(priv);
|
2011-10-26 13:19:58 +00:00
|
|
|
return VO_TRUE;
|
2011-11-01 22:20:38 +00:00
|
|
|
case VOCTRL_SET_YUV_COLORSPACE:
|
|
|
|
priv->colorspace = *(struct mp_csp_details *)data;
|
2011-11-04 06:33:51 +00:00
|
|
|
update_colorspace(priv);
|
|
|
|
vo->want_redraw = true;
|
2011-11-01 22:20:38 +00:00
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_GET_YUV_COLORSPACE:
|
|
|
|
if (!priv->use_shaders)
|
|
|
|
break; // no idea what the heck D3D YUV uses
|
|
|
|
*(struct mp_csp_details *)data = priv->colorspace;
|
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_SET_EQUALIZER: {
|
|
|
|
if (!priv->use_shaders)
|
|
|
|
break;
|
|
|
|
struct voctrl_set_equalizer_args *args = data;
|
|
|
|
if (mp_csp_equalizer_set(&priv->video_eq, args->name, args->value) < 0)
|
|
|
|
return VO_NOTIMPL;
|
2011-11-04 06:33:51 +00:00
|
|
|
update_colorspace(priv);
|
|
|
|
vo->want_redraw = true;
|
2011-11-01 22:20:38 +00:00
|
|
|
return VO_TRUE;
|
|
|
|
}
|
|
|
|
case VOCTRL_GET_EQUALIZER: {
|
|
|
|
if (!priv->use_shaders)
|
|
|
|
break;
|
|
|
|
struct voctrl_get_equalizer_args *args = data;
|
|
|
|
return mp_csp_equalizer_get(&priv->video_eq, args->name, args->valueptr)
|
|
|
|
>= 0 ? VO_TRUE : VO_NOTIMPL;
|
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
case VOCTRL_SET_PANSCAN:
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
calc_fs_rect(priv);
|
2013-02-24 14:29:06 +00:00
|
|
|
priv->vo->want_redraw = true;
|
2008-11-18 12:23:42 +00:00
|
|
|
return VO_TRUE;
|
|
|
|
case VOCTRL_GET_PANSCAN:
|
|
|
|
return VO_TRUE;
|
2011-11-27 18:58:04 +00:00
|
|
|
case VOCTRL_SCREENSHOT: {
|
|
|
|
struct voctrl_screenshot_args *args = data;
|
|
|
|
if (args->full_window)
|
|
|
|
args->out_image = get_window_screenshot(priv);
|
|
|
|
else
|
|
|
|
args->out_image = get_screenshot(priv);
|
|
|
|
return !!args->out_image;
|
|
|
|
}
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
2013-05-16 12:07:41 +00:00
|
|
|
|
|
|
|
int events = 0;
|
|
|
|
int r = vo_w32_control(vo, &events, request, data);
|
|
|
|
|
|
|
|
if (events & VO_EVENT_RESIZE)
|
|
|
|
resize_d3d(priv);
|
|
|
|
|
|
|
|
if (events & VO_EVENT_EXPOSE)
|
|
|
|
vo->want_redraw = true;
|
|
|
|
|
|
|
|
return r;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief libvo Callback: Configre the Direct3D adapter.
|
|
|
|
* @param width Movie source width
|
|
|
|
* @param height Movie source height
|
|
|
|
* @param d_width Screen (destination) width
|
|
|
|
* @param d_height Screen (destination) height
|
|
|
|
* @param options Options bitmap
|
|
|
|
* @param format Movie colorspace format (using MPlayer's
|
video: decouple internal pixel formats from FourCCs
mplayer's video chain traditionally used FourCCs for pixel formats. For
example, it used IMGFMT_YV12 for 4:2:0 YUV, which was defined to the
string 'YV12' interpreted as unsigned int. Additionally, it used to
encode information into the numeric values of some formats. The RGB
formats had their bit depth and endian encoded into the least
significant byte. Extended planar formats (420P10 etc.) had chroma
shift, endian, and component bit depth encoded. (This has been removed
in recent commits.)
Replace the FourCC mess with a simple enum. Remove all the redundant
formats like YV12/I420/IYUV. Replace some image format names by
something more intuitive, most importantly IMGFMT_YV12 -> IMGFMT_420P.
Add img_fourcc.h, which contains the old IDs for code that actually uses
FourCCs. Change the way demuxers, that output raw video, identify the
video format: they set either MP_FOURCC_RAWVIDEO or MP_FOURCC_IMGFMT to
request the rawvideo decoder, and sh_video->imgfmt specifies the pixel
format. Like the previous hack, this is supposed to avoid the need for
a complete codecs.cfg entry per format, or other lookup tables. (Note
that the RGB raw video FourCCs mostly rely on ffmpeg's mappings for NUT
raw video, but this is still considered better than adding a raw video
decoder - even if trivial, it would be full of annoying lookup tables.)
The TV code has not been tested.
Some corrective changes regarding endian and other image format flags
creep in.
2012-12-23 19:03:30 +00:00
|
|
|
* defines, e.g. IMGFMT_YUYV)
|
2008-11-18 12:23:42 +00:00
|
|
|
* @return 0 on success, VO_ERROR on failure
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static int config(struct vo *vo, uint32_t width, uint32_t height,
|
|
|
|
uint32_t d_width, uint32_t d_height, uint32_t options,
|
2008-11-18 12:23:42 +00:00
|
|
|
uint32_t format)
|
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 21:35:51 +00:00
|
|
|
priv->have_image = false;
|
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
/* w32_common framework call. Creates window on the screen with
|
|
|
|
* the given coordinates.
|
|
|
|
*/
|
2012-04-14 11:39:53 +00:00
|
|
|
if (!vo_w32_config(vo, d_width, d_height, options)) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Creating window failed.\n");
|
2008-11-18 12:23:42 +00:00
|
|
|
return VO_ERROR;
|
|
|
|
}
|
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
if ((priv->image_format != format)
|
2011-10-28 20:06:33 +00:00
|
|
|
|| (priv->src_width != width)
|
|
|
|
|| (priv->src_height != height))
|
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_destroy_video_objects(priv);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2011-10-28 20:06:33 +00:00
|
|
|
priv->src_width = width;
|
|
|
|
priv->src_height = height;
|
2011-11-04 06:33:51 +00:00
|
|
|
init_rendering_mode(priv, format, true);
|
2011-10-28 20:06:33 +00:00
|
|
|
}
|
2008-12-02 09:36:47 +00:00
|
|
|
|
2011-11-04 09:02:12 +00:00
|
|
|
if (!resize_d3d(priv))
|
|
|
|
return VO_ERROR;
|
2008-11-23 17:25:46 +00:00
|
|
|
|
2008-11-18 12:23:42 +00:00
|
|
|
return 0; /* Success */
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief libvo Callback: Flip next already drawn frame on the
|
|
|
|
* screen.
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void flip_page(struct vo *vo)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
if (priv->d3d_device && priv->d3d_in_scene) {
|
2011-11-01 22:20:38 +00:00
|
|
|
if (FAILED(IDirect3DDevice9_EndScene(priv->d3d_device))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "EndScene failed.\n");
|
2011-11-01 22:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
priv->d3d_in_scene = false;
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
RECT rect = {0, 0, vo->dwidth, vo->dheight};
|
2009-02-03 11:00:09 +00:00
|
|
|
if (!priv->d3d_device ||
|
|
|
|
FAILED(IDirect3DDevice9_Present(priv->d3d_device, &rect, 0, 0, 0))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Trying to reinitialize uncooperative video adapter.\n");
|
2011-11-04 06:33:51 +00:00
|
|
|
if (!reconfigure_d3d(priv)) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Reinitialization failed.\n");
|
2008-11-18 12:23:42 +00:00
|
|
|
return;
|
2011-11-04 06:33:51 +00:00
|
|
|
} else {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "Video adapter reinitialized.\n");
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief libvo Callback: Uninitializes all pointers and closes
|
|
|
|
* all D3D related stuff,
|
|
|
|
*/
|
2011-11-04 06:33:51 +00:00
|
|
|
static void uninit(struct vo *vo)
|
2008-11-18 12:23:42 +00:00
|
|
|
{
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_VERBOSE(priv, "uninit called.\n");
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
uninit_d3d(priv);
|
2012-04-14 11:39:53 +00:00
|
|
|
vo_w32_uninit(vo);
|
2010-01-03 17:04:04 +00:00
|
|
|
if (priv->d3d9_dll)
|
|
|
|
FreeLibrary(priv->d3d9_dll);
|
|
|
|
priv->d3d9_dll = NULL;
|
2008-11-18 12:23:42 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
// Lock buffers and fill out to point to them.
|
|
|
|
// Must call d3d_unlock_video_objects() to unlock the buffers again.
|
|
|
|
static bool get_video_buffer(d3d_priv *priv, struct mp_image *out)
|
2011-11-01 22:20:38 +00:00
|
|
|
{
|
2012-12-23 10:54:30 +00:00
|
|
|
*out = (struct mp_image) {0};
|
2012-11-10 01:02:24 +00:00
|
|
|
mp_image_set_size(out, priv->src_width, priv->src_height);
|
2012-12-23 10:54:30 +00:00
|
|
|
mp_image_setfmt(out, priv->image_format);
|
2011-11-04 06:33:51 +00:00
|
|
|
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
if (!priv->d3d_device)
|
2012-12-23 10:54:30 +00:00
|
|
|
return false;
|
2008-11-18 12:23:42 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
if (priv->use_textures) {
|
|
|
|
if (!d3d_lock_video_textures(priv))
|
|
|
|
return false;
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
|
|
|
struct texplane *plane = &priv->planes[n];
|
|
|
|
out->planes[n] = plane->locked_rect.pBits;
|
|
|
|
out->stride[n] = plane->locked_rect.Pitch;
|
2008-11-23 18:45:01 +00:00
|
|
|
}
|
2012-12-23 10:54:30 +00:00
|
|
|
} else {
|
|
|
|
if (!priv->locked_rect.pBits) {
|
|
|
|
if (FAILED(IDirect3DSurface9_LockRect(priv->d3d_surface,
|
|
|
|
&priv->locked_rect, NULL, 0)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Surface lock failed.\n");
|
2012-12-23 10:54:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-11-27 18:58:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
uint8_t *base = priv->locked_rect.pBits;
|
|
|
|
size_t stride = priv->locked_rect.Pitch;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
out->planes[0] = base;
|
|
|
|
out->stride[0] = stride;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
if (out->num_planes == 3) {
|
|
|
|
bool swap = priv->movie_src_fmt == MAKEFOURCC('Y','V','1','2');
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
size_t uv_stride = stride / 2;
|
|
|
|
uint8_t *u = base + out->h * stride;
|
|
|
|
uint8_t *v = u + (out->h / 2) * uv_stride;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
out->planes[1] = swap ? v : u;
|
|
|
|
out->planes[2] = swap ? u : v;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
out->stride[1] = out->stride[2] = uv_stride;
|
|
|
|
}
|
2011-11-27 18:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
static void draw_image(struct vo *vo, mp_image_t *mpi)
|
2011-11-27 18:58:04 +00:00
|
|
|
{
|
2012-12-23 10:54:30 +00:00
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
if (!priv->d3d_device)
|
|
|
|
return;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
struct mp_image buffer;
|
|
|
|
if (!get_video_buffer(priv, &buffer))
|
|
|
|
return;
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-22 20:46:22 +00:00
|
|
|
mp_image_copy(&buffer, mpi);
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
d3d_unlock_video_objects(priv);
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
if (priv->use_textures) {
|
|
|
|
for (int n = 0; n < priv->plane_count; n++) {
|
|
|
|
d3dtex_update(priv, &priv->planes[n].texture);
|
|
|
|
}
|
2011-11-27 18:58:04 +00:00
|
|
|
}
|
|
|
|
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 21:35:51 +00:00
|
|
|
priv->have_image = true;
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
d3d_draw_frame(priv);
|
2011-11-27 18:58:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static mp_image_t *get_screenshot(d3d_priv *priv)
|
|
|
|
{
|
|
|
|
if (!priv->d3d_device)
|
|
|
|
return NULL;
|
|
|
|
|
video/out: always support redrawing VO window at any point
Before, a VO could easily refuse to respond to VOCTRL_REDRAW_FRAME,
which means the VO wouldn't redraw OSD and window contents, and the
player would appear frozen to the user. This was a bit stupid, and makes
dealing with some corner cases much harder (think of --keep-open, which
was hard to implement, because the VO gets into this state if there are
no new video frames after a seek reset).
Change this, and require VOs to always react to VOCTRL_REDRAW_FRAME.
There are two aspects of this: First, behavior after a (successful)
vo_reconfig() call, but before any video frame has been displayed.
Second, behavior after a vo_seek_reset().
For the first issue, we define that sending VOCTRL_REDRAW_FRAME after
vo_reconfig() should clear the window with black. This requires minor
changes to some VOs. In particular vaapi makes this horribly
complicated, because OSD rendering is bound to a video surface. We
create a black dummy surface for this purpose.
The second issue is much simpler and works already with most VOs: they
simply redraw whatever has been uploaded previously. The exception is
vdpau, which has a complicated mechanism to track and filter video
frames. The state associated with this mechanism is completely cleared
with vo_seek_reset(), so implementing this to work as expected is not
trivial. For now, we just clear the window with black.
2013-10-01 21:35:51 +00:00
|
|
|
if (!priv->have_image)
|
|
|
|
return NULL;
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
struct mp_image buffer;
|
|
|
|
if (!get_video_buffer(priv, &buffer))
|
2011-11-27 18:58:04 +00:00
|
|
|
return NULL;
|
|
|
|
|
2012-11-10 01:02:24 +00:00
|
|
|
struct mp_image *image = mp_image_new_copy(&buffer);
|
|
|
|
mp_image_set_display_size(image, priv->vo->aspdat.prew,
|
|
|
|
priv->vo->aspdat.preh);
|
2011-11-27 18:58:04 +00:00
|
|
|
|
2012-10-26 17:29:47 +00:00
|
|
|
mp_image_set_colorspace_details(image, &priv->colorspace);
|
|
|
|
|
2012-12-23 10:54:30 +00:00
|
|
|
d3d_unlock_video_objects(priv);
|
2011-11-27 18:58:04 +00:00
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_image_t *get_window_screenshot(d3d_priv *priv)
|
|
|
|
{
|
|
|
|
D3DDISPLAYMODE mode;
|
|
|
|
mp_image_t *image = NULL;
|
|
|
|
RECT window_rc;
|
|
|
|
RECT screen_rc;
|
|
|
|
RECT visible;
|
|
|
|
POINT pt;
|
|
|
|
D3DLOCKED_RECT locked_rect;
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
if (FAILED(IDirect3DDevice9_GetDisplayMode(priv->d3d_device, 0, &mode))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "GetDisplayMode failed.\n");
|
2011-11-27 18:58:04 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDirect3DSurface9 *surface = NULL;
|
|
|
|
if (FAILED(IDirect3DDevice9_CreateOffscreenPlainSurface(priv->d3d_device,
|
|
|
|
mode.Width, mode.Height, D3DFMT_A8R8G8B8, D3DPOOL_SYSTEMMEM, &surface,
|
|
|
|
NULL)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Couldn't create surface.\n");
|
2011-11-27 18:58:04 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(IDirect3DDevice9_GetFrontBufferData(priv->d3d_device, 0,
|
|
|
|
surface)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "Couldn't copy frontbuffer.\n");
|
2011-11-27 18:58:04 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
|
2012-04-14 11:39:53 +00:00
|
|
|
GetClientRect(priv->vo->w32->window, &window_rc);
|
2011-11-27 18:58:04 +00:00
|
|
|
pt = (POINT) { 0, 0 };
|
2012-04-14 11:39:53 +00:00
|
|
|
ClientToScreen(priv->vo->w32->window, &pt);
|
2011-11-27 18:58:04 +00:00
|
|
|
window_rc.left = pt.x;
|
|
|
|
window_rc.top = pt.y;
|
|
|
|
window_rc.right += window_rc.left;
|
|
|
|
window_rc.bottom += window_rc.top;
|
|
|
|
|
|
|
|
screen_rc = (RECT) { 0, 0, mode.Width, mode.Height };
|
|
|
|
|
|
|
|
if (!IntersectRect(&visible, &screen_rc, &window_rc))
|
|
|
|
goto error_exit;
|
|
|
|
width = visible.right - visible.left;
|
|
|
|
height = visible.bottom - visible.top;
|
|
|
|
if (width < 1 || height < 1)
|
|
|
|
goto error_exit;
|
|
|
|
|
2012-12-22 20:46:22 +00:00
|
|
|
image = mp_image_alloc(IMGFMT_BGR32, width, height);
|
2011-11-27 18:58:04 +00:00
|
|
|
|
|
|
|
IDirect3DSurface9_LockRect(surface, &locked_rect, NULL, 0);
|
|
|
|
|
|
|
|
memcpy_pic(image->planes[0], (char*)locked_rect.pBits + visible.top *
|
|
|
|
locked_rect.Pitch + visible.left * 4, width * 4, height,
|
|
|
|
image->stride[0], locked_rect.Pitch);
|
|
|
|
|
|
|
|
IDirect3DSurface9_UnlockRect(surface);
|
|
|
|
IDirect3DSurface9_Release(surface);
|
|
|
|
|
|
|
|
return image;
|
|
|
|
|
|
|
|
error_exit:
|
|
|
|
if (image)
|
2012-12-22 20:46:22 +00:00
|
|
|
talloc_free(image);
|
2011-11-27 18:58:04 +00:00
|
|
|
if (surface)
|
|
|
|
IDirect3DSurface9_Release(surface);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
static bool upload_osd(d3d_priv *priv, struct osdpart *osd,
|
|
|
|
struct sub_bitmaps *imgs)
|
2008-12-09 18:31:52 +00:00
|
|
|
{
|
2012-10-04 15:16:21 +00:00
|
|
|
D3DFORMAT fmt = osd_fmt_table[imgs->format];
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
osd->packer->w_max = priv->max_texture_width;
|
|
|
|
osd->packer->h_max = priv->max_texture_height;
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
osd->packer->padding = imgs->scaled; // assume 2x2 filter on scaling
|
|
|
|
int r = packer_pack_from_subbitmaps(osd->packer, imgs);
|
|
|
|
if (r < 0) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "OSD bitmaps do not fit on "
|
2012-10-04 15:16:21 +00:00
|
|
|
"a surface with the maximum supported size %dx%d.\n",
|
|
|
|
osd->packer->w_max, osd->packer->h_max);
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (osd->packer->w > osd->texture.tex_w
|
|
|
|
|| osd->packer->h > osd->texture.tex_h
|
|
|
|
|| osd->format != imgs->format)
|
|
|
|
{
|
|
|
|
osd->format = imgs->format;
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
int new_w = osd->packer->w;
|
|
|
|
int new_h = osd->packer->h;
|
|
|
|
d3d_fix_texture_size(priv, &new_w, &new_h);
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_DBG(priv, "reallocate OSD surface.\n");
|
2011-11-01 02:11:46 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
d3dtex_release(priv, &osd->texture);
|
|
|
|
d3dtex_allocate(priv, &osd->texture, fmt, new_w, new_h);
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (!osd->texture.system)
|
|
|
|
return false; // failed to allocate
|
2008-12-09 18:31:52 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
struct pos bb[2];
|
|
|
|
packer_get_bb(osd->packer, bb);
|
|
|
|
RECT dirty_rc = { bb[0].x, bb[0].y, bb[1].x, bb[1].y };
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
D3DLOCKED_RECT locked_rect;
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (FAILED(IDirect3DTexture9_LockRect(osd->texture.system, 0, &locked_rect,
|
|
|
|
&dirty_rc, 0)))
|
|
|
|
{
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "OSD texture lock failed.\n");
|
2012-10-04 15:16:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-09 18:31:52 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
int ps = fmt == D3DFMT_A8 ? 1 : 4;
|
|
|
|
packer_copy_subbitmaps(osd->packer, imgs, locked_rect.pBits, ps,
|
|
|
|
locked_rect.Pitch);
|
2011-11-01 22:20:38 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (FAILED(IDirect3DTexture9_UnlockRect(osd->texture.system, 0))) {
|
2013-08-23 21:30:09 +00:00
|
|
|
MP_ERR(priv, "OSD texture unlock failed.\n");
|
2012-10-04 15:16:21 +00:00
|
|
|
return false;
|
2008-12-09 18:31:52 +00:00
|
|
|
}
|
2012-10-04 15:16:21 +00:00
|
|
|
|
|
|
|
return d3dtex_update(priv, &osd->texture);
|
2008-12-09 18:31:52 +00:00
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
static struct osdpart *generate_osd(d3d_priv *priv, struct sub_bitmaps *imgs)
|
2011-10-26 09:44:30 +00:00
|
|
|
{
|
2012-10-04 15:16:21 +00:00
|
|
|
if (imgs->num_parts == 0 || !osd_fmt_table[imgs->format])
|
|
|
|
return NULL;
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
struct osdpart *osd = priv->osd[imgs->render_index];
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (imgs->bitmap_pos_id != osd->bitmap_pos_id) {
|
|
|
|
if (imgs->bitmap_id != osd->bitmap_id) {
|
|
|
|
if (!upload_osd(priv, osd, imgs))
|
|
|
|
osd->packer->count = 0;
|
|
|
|
}
|
2011-11-01 01:38:17 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
osd->bitmap_id = imgs->bitmap_id;
|
|
|
|
osd->bitmap_pos_id = imgs->bitmap_pos_id;
|
|
|
|
osd->num_vertices = 0;
|
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
return osd->packer->count ? osd : NULL;
|
2011-10-26 09:44:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static D3DCOLOR ass_to_d3d_color(uint32_t color)
|
|
|
|
{
|
|
|
|
uint32_t r = (color >> 24) & 0xff;
|
|
|
|
uint32_t g = (color >> 16) & 0xff;
|
|
|
|
uint32_t b = (color >> 8) & 0xff;
|
|
|
|
uint32_t a = 0xff - (color & 0xff);
|
|
|
|
return D3DCOLOR_ARGB(a, r, g, b);
|
|
|
|
}
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
static void draw_osd_cb(void *ctx, struct sub_bitmaps *imgs)
|
2011-10-26 09:44:30 +00:00
|
|
|
{
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
d3d_priv *priv = ctx;
|
vo_direct3d: fix dealing with uncooperative devices
If the Direct3D device is "lost" (e,g, when minimizing mplayer, or when
another application uses Direct3D exclusive mode), we free it and try to
recrate the device. This can fail, and may fail for an extended period of
time, until D3D is available again and the device can be created. So we
basically have to provide all VO functionality while d3d_device is NULL.
Don't terminate if device creation fails, and re-add the NULL checks that
were removed in the commit "vo_direct3d: refactor D3D initialization and
reconfigure code".
If mplayer calls the VO's config() while the D3D device can not be
created, the VO will return an error and mplayer will terminate.
config() is typically called when new files are played, when ordered
chapter boundaries are crossed, or on other events.
2011-11-12 16:07:49 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
struct osdpart *osd = generate_osd(priv, imgs);
|
|
|
|
if (!osd)
|
2011-10-26 09:44:30 +00:00
|
|
|
return;
|
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (osd->packer->count && !osd->num_vertices) {
|
|
|
|
// We need 2 primitives per quad which makes 6 vertices (we could reduce
|
|
|
|
// the number of vertices by using an indexed vertex array, but it's
|
|
|
|
// probably not worth doing)
|
|
|
|
osd->num_vertices = osd->packer->count * 6;
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
osd->vertices = talloc_realloc(osd, osd->vertices, vertex_osd,
|
2012-10-04 15:16:21 +00:00
|
|
|
osd->num_vertices);
|
|
|
|
|
|
|
|
float tex_w = osd->texture.tex_w;
|
|
|
|
float tex_h = osd->texture.tex_h;
|
|
|
|
|
|
|
|
for (int n = 0; n < osd->packer->count; n++) {
|
|
|
|
struct sub_bitmap *b = &imgs->parts[n];
|
|
|
|
struct pos p = osd->packer->result[n];
|
|
|
|
|
|
|
|
D3DCOLOR color = imgs->format == SUBBITMAP_LIBASS
|
|
|
|
? ass_to_d3d_color(b->libass.color)
|
|
|
|
: D3DCOLOR_ARGB(255, 255, 255, 255);
|
|
|
|
|
|
|
|
float x0 = b->x;
|
|
|
|
float y0 = b->y;
|
|
|
|
float x1 = b->x + b->dw;
|
|
|
|
float y1 = b->y + b->dh;
|
|
|
|
float tx0 = p.x / tex_w;
|
|
|
|
float ty0 = p.y / tex_h;
|
|
|
|
float tx1 = (p.x + b->w) / tex_w;
|
|
|
|
float ty1 = (p.y + b->h) / tex_h;
|
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
vertex_osd *v = &osd->vertices[n * 6];
|
|
|
|
v[0] = (vertex_osd) { x0, y0, 0, color, tx0, ty0 };
|
|
|
|
v[1] = (vertex_osd) { x1, y0, 0, color, tx1, ty0 };
|
|
|
|
v[2] = (vertex_osd) { x0, y1, 0, color, tx0, ty1 };
|
|
|
|
v[3] = (vertex_osd) { x1, y1, 0, color, tx1, ty1 };
|
2012-10-04 15:16:21 +00:00
|
|
|
v[4] = v[2];
|
|
|
|
v[5] = v[1];
|
2011-12-09 10:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
d3d_begin_scene(priv);
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_ALPHABLENDENABLE, TRUE);
|
2011-10-26 09:44:30 +00:00
|
|
|
|
|
|
|
IDirect3DDevice9_SetTexture(priv->d3d_device, 0,
|
2012-10-04 15:16:21 +00:00
|
|
|
d3dtex_get_render_texture(priv, &osd->texture));
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
if (imgs->format == SUBBITMAP_LIBASS) {
|
|
|
|
// do not use the color value from the A8 texture, because that is black
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,D3DRS_TEXTUREFACTOR,
|
|
|
|
0xFFFFFFFF);
|
|
|
|
IDirect3DDevice9_SetTextureStageState(priv->d3d_device,0,
|
|
|
|
D3DTSS_COLORARG1, D3DTA_TFACTOR);
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2012-10-04 15:16:21 +00:00
|
|
|
IDirect3DDevice9_SetTextureStageState(priv->d3d_device, 0,
|
|
|
|
D3DTSS_ALPHAOP, D3DTOP_MODULATE);
|
2012-10-05 18:37:16 +00:00
|
|
|
} else {
|
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device, D3DRS_SRCBLEND,
|
|
|
|
D3DBLEND_ONE);
|
2012-10-04 15:16:21 +00:00
|
|
|
}
|
2011-10-26 09:44:30 +00:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
IDirect3DDevice9_SetFVF(priv->d3d_device, D3DFVF_OSD_VERTEX);
|
2011-10-26 09:44:30 +00:00
|
|
|
IDirect3DDevice9_DrawPrimitiveUP(priv->d3d_device, D3DPT_TRIANGLELIST,
|
2012-10-04 15:16:21 +00:00
|
|
|
osd->num_vertices / 3,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
osd->vertices, sizeof(vertex_osd));
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
IDirect3DDevice9_SetTextureStageState(priv->d3d_device,0,
|
|
|
|
D3DTSS_COLORARG1, D3DTA_TEXTURE);
|
2011-10-26 09:44:30 +00:00
|
|
|
IDirect3DDevice9_SetTextureStageState(priv->d3d_device, 0,
|
|
|
|
D3DTSS_ALPHAOP, D3DTOP_SELECTARG1);
|
2012-10-05 18:37:16 +00:00
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_SRCBLEND, D3DBLEND_SRCALPHA);
|
2011-10-26 09:44:30 +00:00
|
|
|
|
2011-11-01 22:20:38 +00:00
|
|
|
IDirect3DDevice9_SetTexture(priv->d3d_device, 0, NULL);
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
IDirect3DDevice9_SetRenderState(priv->d3d_device,
|
|
|
|
D3DRS_ALPHABLENDENABLE, FALSE);
|
2011-10-26 09:44:30 +00:00
|
|
|
}
|
2011-11-04 06:33:51 +00:00
|
|
|
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
|
|
|
|
static void draw_osd(struct vo *vo, struct osd_state *osd)
|
|
|
|
{
|
|
|
|
d3d_priv *priv = vo->priv;
|
|
|
|
if (!priv->d3d_device)
|
|
|
|
return;
|
|
|
|
|
2012-10-27 20:10:32 +00:00
|
|
|
osd_draw(osd, priv->osd_res, osd->vo_pts, 0, osd_fmt_supported,
|
|
|
|
draw_osd_cb, priv);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
}
|
|
|
|
|
2013-07-21 23:34:48 +00:00
|
|
|
#define OPT_BASE_STRUCT d3d_priv
|
|
|
|
|
|
|
|
static const struct m_option opts[] = {
|
|
|
|
OPT_FLAG("prefer-stretchrect", opt_prefer_stretchrect, 0),
|
|
|
|
OPT_FLAG("disable-textures", opt_disable_textures, 0),
|
|
|
|
OPT_FLAG("disable-stretchrect", opt_disable_stretchrect, 0),
|
|
|
|
OPT_FLAG("disable-shaders", opt_disable_shaders, 0),
|
|
|
|
OPT_FLAG("only-8bit", opt_only_8bit, 0),
|
|
|
|
OPT_FLAG("force-power-of-2", opt_force_power_of_2, 0),
|
|
|
|
OPT_FLAG("disable-texture-align", opt_disable_texture_align, 0),
|
|
|
|
OPT_FLAG("texture-memory", opt_texture_memory, 0),
|
|
|
|
OPT_FLAG("swap-discard", opt_swap_discard, 0),
|
|
|
|
OPT_FLAG("exact-backbuffer", opt_exact_backbuffer, 0),
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
|
2013-10-24 20:20:16 +00:00
|
|
|
static const d3d_priv defaults_noshaders = {
|
|
|
|
.colorspace = MP_CSP_DETAILS_DEFAULTS,
|
|
|
|
.video_eq = { MP_CSP_EQ_CAPS_COLORMATRIX },
|
|
|
|
.opt_disable_shaders = 1,
|
|
|
|
.opt_disable_textures = 1,
|
|
|
|
};
|
|
|
|
|
2013-07-21 23:34:48 +00:00
|
|
|
static const d3d_priv defaults = {
|
|
|
|
.colorspace = MP_CSP_DETAILS_DEFAULTS,
|
|
|
|
.video_eq = { MP_CSP_EQ_CAPS_COLORMATRIX },
|
|
|
|
};
|
|
|
|
|
2011-11-04 06:33:51 +00:00
|
|
|
const struct vo_driver video_out_direct3d = {
|
2013-10-23 17:06:14 +00:00
|
|
|
.description = "Direct3D 9 Renderer",
|
|
|
|
.name = "direct3d",
|
2013-07-21 23:34:48 +00:00
|
|
|
.preinit = preinit,
|
2012-11-04 15:24:18 +00:00
|
|
|
.query_format = query_format,
|
2011-11-04 07:39:20 +00:00
|
|
|
.config = config,
|
|
|
|
.control = control,
|
2012-11-04 14:56:04 +00:00
|
|
|
.draw_image = draw_image,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
.draw_osd = draw_osd,
|
2011-11-04 07:39:20 +00:00
|
|
|
.flip_page = flip_page,
|
|
|
|
.uninit = uninit,
|
2013-07-21 23:34:48 +00:00
|
|
|
.priv_size = sizeof(d3d_priv),
|
2013-10-24 20:20:16 +00:00
|
|
|
.priv_defaults = &defaults_noshaders,
|
2013-07-21 23:34:48 +00:00
|
|
|
.options = opts,
|
2011-11-04 07:39:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct vo_driver video_out_direct3d_shaders = {
|
2013-10-23 17:06:14 +00:00
|
|
|
.description = "Direct3D 9 Renderer (using shaders for YUV conversion)",
|
|
|
|
.name = "direct3d_shaders",
|
2013-07-21 23:34:48 +00:00
|
|
|
.preinit = preinit,
|
2012-11-04 15:24:18 +00:00
|
|
|
.query_format = query_format,
|
2011-11-04 06:33:51 +00:00
|
|
|
.config = config,
|
|
|
|
.control = control,
|
2012-11-04 14:56:04 +00:00
|
|
|
.draw_image = draw_image,
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
.draw_osd = draw_osd,
|
2011-11-04 06:33:51 +00:00
|
|
|
.flip_page = flip_page,
|
|
|
|
.uninit = uninit,
|
2013-07-21 23:34:48 +00:00
|
|
|
.priv_size = sizeof(d3d_priv),
|
|
|
|
.priv_defaults = &defaults,
|
|
|
|
.options = opts,
|
2011-11-04 06:33:51 +00:00
|
|
|
};
|