21 #if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0600 23 #define _WIN32_WINNT 0x0600 25 #define DXVA2API_USE_BITFIELDS 48 IDirectXVideoAccelerationService *
service;
71 DEFINE_GUID(video_decoder_service, 0xfc51a551, 0xd5e7, 0x11d9, 0xaf, 0x55, 0x00, 0x05, 0x4e, 0x43, 0xff, 0x02);
72 DEFINE_GUID(video_processor_service, 0xfc51a552, 0xd5e7, 0x11d9, 0xaf, 0x55, 0x00, 0x05, 0x4e, 0x43, 0xff, 0x02);
93 IDirectXVideoAccelerationService_Release(s->
service);
137 hr = IDirect3DDeviceManager9_GetVideoService(device_hwctx->
devmgr,
139 decode ? &video_decoder_service : &video_processor_service,
163 hr = IDirectXVideoAccelerationService_CreateSurface(s->
service,
166 s->
format, D3DPOOL_DEFAULT, 0,
191 if (hwctx->
surface_type != DXVA2_VideoDecoderRenderTarget &&
192 hwctx->
surface_type != DXVA2_VideoProcessorRenderTarget) {
247 IDirect3DSurface9 *surface;
248 D3DSURFACE_DESC surfaceDesc;
249 D3DLOCKED_RECT LockedRect;
253 int surf_linesize[4] = { 0 };
258 surface = (IDirect3DSurface9*)(download ? src->
data[3] : dst->
data[3]);
260 hr = IDirect3DSurface9_GetDesc(surface, &surfaceDesc);
266 hr = IDirect3DSurface9_LockRect(surface, &LockedRect,
NULL,
267 download ? D3DLOCK_READONLY : D3DLOCK_DISCARD);
273 for (i = 0; download ? dst->
data[i] : src->
data[i]; i++)
274 surf_linesize[i] = LockedRect.Pitch;
277 (
uint8_t*)LockedRect.pBits, surf_linesize);
287 IDirect3DSurface9_UnlockRect(surface);
301 IDirect3DDeviceManager9_Release(hwctx->
devmgr);
307 IDirect3D9_Release(priv->
d3d9);
326 D3DPRESENT_PARAMETERS d3dpp = {0};
327 D3DDISPLAYMODE d3ddm;
328 unsigned resetToken = 0;
329 UINT adapter = D3DADAPTER_DEFAULT;
333 adapter = atoi(device);
361 "DXVA2CreateDirect3DDeviceManager9");
362 if (!createDeviceManager) {
367 priv->
d3d9 = createD3D(D3D_SDK_VERSION);
373 IDirect3D9_GetAdapterDisplayMode(priv->
d3d9, adapter, &d3ddm);
374 d3dpp.Windowed = TRUE;
375 d3dpp.BackBufferWidth = 640;
376 d3dpp.BackBufferHeight = 480;
377 d3dpp.BackBufferCount = 0;
378 d3dpp.BackBufferFormat = d3ddm.Format;
379 d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD;
380 d3dpp.Flags = D3DPRESENTFLAG_VIDEO;
382 hr = IDirect3D9_CreateDevice(priv->
d3d9, adapter, D3DDEVTYPE_HAL, GetShellWindow(),
383 D3DCREATE_SOFTWARE_VERTEXPROCESSING | D3DCREATE_MULTITHREADED | D3DCREATE_FPU_PRESERVE,
390 hr = createDeviceManager(&resetToken, &hwctx->
devmgr);
396 hr = IDirect3DDeviceManager9_ResetDevice(hwctx->
devmgr, priv->
d3d9device, resetToken);
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
This structure describes decoded (raw) audio or video data.
This struct is allocated as AVHWFramesContext.hwctx.
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
An API-specific header for AV_HWDEVICE_TYPE_DXVA2.
av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (%s)\, len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic ? ac->func_descr_generic :ac->func_descr)
static enum AVSampleFormat formats[]
int width
The allocated dimensions of the frames in this pool.
#define FF_ARRAY_ELEMS(a)
static int dxva2_transfer_data(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame...
AVBufferPool * pool_internal
enum AVPixelFormat pix_fmt
DWORD surface_type
The surface type (e.g.
void * hwctx
The format-specific data, allocated and freed by libavutil along with this context.
IDirect3D9 *WINAPI pDirect3DCreate9(UINT)
static AVBufferRef * dxva2_pool_alloc(void *opaque, int size)
int width
width and height of the video frame
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int dxva2_get_buffer(AVHWFramesContext *ctx, AVFrame *frame)
IDirectXVideoDecoder * decoder_to_release
Certain drivers require the decoder to be destroyed before the surfaces.
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
IDirect3DDeviceManager9 * devmgr
AVBufferRef * av_buffer_create(uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
static int dxva2_device_create(AVHWDeviceContext *ctx, const char *device, AVDictionary *opts, int flags)
int initial_pool_size
Initial size of the frame pool.
IDirect3DDevice9 * d3d9device
AVHWDeviceContext * device_ctx
The parent AVHWDeviceContext.
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
static int dxva2_frames_init(AVHWFramesContext *ctx)
IDirectXVideoAccelerationService * service
AVBufferPool * av_buffer_pool_init2(int size, void *opaque, AVBufferRef *(*alloc)(void *opaque, int size), void(*pool_free)(void *opaque))
Allocate and initialize a buffer pool with a more complex allocator.
static void dxva2_frames_uninit(AVHWFramesContext *ctx)
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
int av_image_fill_pointers(uint8_t *data[4], enum AVPixelFormat pix_fmt, int height, uint8_t *ptr, const int linesizes[4])
Fill plane data pointers for an image with pixel format pix_fmt and height height.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
uint8_t * data
The data buffer.
void * hwctx
The format-specific data, allocated and freed automatically along with this context.
HRESULT WINAPI pCreateDeviceManager9(UINT *, IDirect3DDeviceManager9 **)
DEFINE_GUID(video_decoder_service, 0xfc51a551, 0xd5e7, 0x11d9, 0xaf, 0x55, 0x00, 0x05, 0x4e, 0x43, 0xff, 0x02)
static int dxva2_transfer_get_formats(AVHWFramesContext *ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats)
This struct describes a set or pool of "hardware" frames (i.e.
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer. ...
AVHWFramesInternal * internal
Private data used internally by libavutil.
static enum AVPixelFormat pix_fmts[]
static void dxva2_device_free(AVHWDeviceContext *ctx)
static void * av_malloc_array(size_t nmemb, size_t size)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
void * user_opaque
Arbitrary user data, to be used e.g.
A reference to a data buffer.
IDirect3DSurface9 ** surfaces_internal
common internal and external API header
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
IDirect3DSurface9 ** surfaces
The surface pool.
AVHWFrameTransferDirection
AVBufferPool * pool
A pool from which the frames are allocated by av_hwframe_get_buffer().
This struct is allocated as AVHWDeviceContext.hwctx.
static void * av_mallocz_array(size_t nmemb, size_t size)
void(* free)(struct AVHWDeviceContext *ctx)
This field may be set by the caller before calling av_hwdevice_ctx_init().
static const struct @162 supported_formats[]
static int dxva2_init_pool(AVHWFramesContext *ctx)
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
#define MKTAG(a, b, c, d)
const HWContextType ff_hwcontext_type_dxva2
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
AVPixelFormat
Pixel format.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...