22 #include <mfx/mfxvideo.h>
108 if (err == MFX_ERR_NONE) {
117 "from the session\n");
121 if (err == MFX_ERR_NONE)
122 err = MFXQueryVersion(hwctx->
session, &s->
ver);
123 if (err != MFX_ERR_NONE) {
186 if (!device_priv->
handle) {
188 "Cannot create a non-opaque internal surface pool without "
189 "a hardware handle\n");
194 if (!child_device_ref)
201 child_device_hwctx->
display = (VADisplay)device_priv->
handle;
207 child_device_hwctx->
devmgr = (IDirect3DDeviceManager9*)device_priv->
handle;
218 if (!child_frames_ref) {
233 if (hwctx->
frame_type & MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET)
234 child_frames_hwctx->
surface_type = DXVA2_VideoProcessorRenderTarget;
236 child_frames_hwctx->
surface_type = DXVA2_VideoDecoderRenderTarget;
251 hwctx->
frame_type = MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET;
259 if (child_frames_hwctx->
surface_type == DXVA2_VideoProcessorRenderTarget)
260 hwctx->
frame_type = MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET;
262 hwctx->
frame_type = MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET;
267 child_frames_ref =
NULL;
300 surf->Info.BitDepthLuma = desc->
comp[0].
depth;
301 surf->Info.BitDepthChroma = desc->
comp[0].
depth;
302 surf->Info.Shift = desc->
comp[0].
depth > 8;
305 surf->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
307 surf->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV422;
309 surf->Info.ChromaFormat = MFX_CHROMAFORMAT_YUV444;
311 surf->Info.FourCC =
fourcc;
312 surf->Info.Width = ctx->
width;
313 surf->Info.CropW = ctx->
width;
314 surf->Info.Height = ctx->
height;
315 surf->Info.CropH = ctx->
height;
316 surf->Info.FrameRateExtN = 25;
317 surf->Info.FrameRateExtD = 1;
320 if (!(frames_hwctx->
frame_type & MFX_MEMTYPE_OPAQUE_FRAME)) {
337 static mfxStatus
frame_alloc(mfxHDL pthis, mfxFrameAllocRequest *req,
338 mfxFrameAllocResponse *resp)
343 mfxFrameInfo *i = &req->Info;
344 mfxFrameInfo *i1 = &hwctx->
surfaces[0].Info;
346 if (!(req->Type & MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET) ||
347 !(req->Type & (MFX_MEMTYPE_FROM_VPPIN | MFX_MEMTYPE_FROM_VPPOUT)) ||
348 !(req->Type & MFX_MEMTYPE_EXTERNAL_FRAME))
349 return MFX_ERR_UNSUPPORTED;
350 if (i->Width != i1->Width || i->Height != i1->Height ||
351 i->FourCC != i1->FourCC || i->ChromaFormat != i1->ChromaFormat) {
353 "allocation request: %dx%d %d %d vs %dx%d %d %d\n",
354 i->Width, i->Height, i->FourCC, i->ChromaFormat,
355 i1->Width, i1->Height, i1->FourCC, i1->ChromaFormat);
356 return MFX_ERR_UNSUPPORTED;
365 static mfxStatus
frame_free(mfxHDL pthis, mfxFrameAllocResponse *resp)
370 static mfxStatus
frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
372 return MFX_ERR_UNSUPPORTED;
375 static mfxStatus
frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
377 return MFX_ERR_UNSUPPORTED;
387 mfxSession *session,
int upload)
392 int opaque = !!(frames_hwctx->
frame_type & MFX_MEMTYPE_OPAQUE_FRAME);
394 mfxFrameAllocator frame_allocator = {
406 err = MFXInit(device_priv->
impl, &device_priv->
ver, session);
407 if (err != MFX_ERR_NONE) {
412 if (device_priv->
handle) {
413 err = MFXVideoCORE_SetHandle(*session, device_priv->
handle_type,
415 if (err != MFX_ERR_NONE)
420 err = MFXVideoCORE_SetFrameAllocator(*session, &frame_allocator);
421 if (err != MFX_ERR_NONE)
425 memset(&par, 0,
sizeof(par));
430 par.IOPattern = upload ? MFX_IOPATTERN_OUT_OPAQUE_MEMORY :
431 MFX_IOPATTERN_IN_OPAQUE_MEMORY;
433 par.IOPattern = upload ? MFX_IOPATTERN_OUT_VIDEO_MEMORY :
434 MFX_IOPATTERN_IN_VIDEO_MEMORY;
437 par.IOPattern |= upload ? MFX_IOPATTERN_IN_SYSTEM_MEMORY :
438 MFX_IOPATTERN_OUT_SYSTEM_MEMORY;
441 par.vpp.In = frames_hwctx->
surfaces[0].Info;
447 par.vpp.In.FrameRateExtN = 25;
448 par.vpp.In.FrameRateExtD = 1;
449 par.vpp.Out = par.vpp.In;
451 err = MFXVideoVPP_Init(*session, &par);
452 if (err != MFX_ERR_NONE) {
454 "Surface upload/download will not be possible\n");
467 int opaque = !!(frames_hwctx->
frame_type & MFX_MEMTYPE_OPAQUE_FRAME);
506 s->
opaque_alloc.Header.BufferId = MFX_EXTBUFF_OPAQUE_SURFACE_ALLOCATION;
566 mfxFrameSurface1 *surf = (mfxFrameSurface1*)src->
data[3];
585 dummy->format = child_frames_ctx->format;
588 dummy->data[3] = surf->Data.MemId;
604 mfxFrameSurface1 *surf = (mfxFrameSurface1*)(download ? src->
data[3] : dst->
data[3]);
616 dummy->
buf[0] = download ? src->
buf[0] : dst->
buf[0];
617 dummy->
data[3] = surf->Data.MemId;
636 mfxFrameSurface1
out = {{ 0 }};
637 mfxFrameSurface1 *
in = (mfxFrameSurface1*)src->
data[3];
639 mfxSyncPoint sync =
NULL;
651 out.Data.PitchLow = dst->
linesize[0];
652 out.Data.Y = dst->
data[0];
653 out.Data.U = dst->
data[1];
654 out.Data.V = dst->
data[2];
655 out.Data.A = dst->
data[3];
659 if (err == MFX_WRN_DEVICE_BUSY)
661 }
while (err == MFX_WRN_DEVICE_BUSY);
663 if (err < 0 || !sync) {
670 }
while (err == MFX_WRN_IN_EXECUTION);
683 mfxFrameSurface1
in = {{ 0 }};
684 mfxFrameSurface1 *
out = (mfxFrameSurface1*)dst->
data[3];
686 mfxSyncPoint sync =
NULL;
698 in.Data.PitchLow = src->
linesize[0];
699 in.Data.Y = src->
data[0];
700 in.Data.U = src->
data[1];
701 in.Data.V = src->
data[2];
702 in.Data.A = src->
data[3];
706 if (err == MFX_WRN_DEVICE_BUSY)
708 }
while (err == MFX_WRN_DEVICE_BUSY);
710 if (err < 0 || !sync) {
717 }
while (err == MFX_WRN_IN_EXECUTION);
727 const void *hwconfig,
765 static const struct {
769 {
"auto", MFX_IMPL_AUTO },
770 {
"sw", MFX_IMPL_SOFTWARE },
771 {
"hw", MFX_IMPL_HARDWARE },
772 {
"auto_any", MFX_IMPL_AUTO_ANY },
773 {
"hw_any", MFX_IMPL_HARDWARE_ANY },
774 {
"hw2", MFX_IMPL_HARDWARE2 },
775 {
"hw3", MFX_IMPL_HARDWARE3 },
776 {
"hw4", MFX_IMPL_HARDWARE4 },
779 mfxIMPL impl = MFX_IMPL_AUTO_ANY;
784 if (!strcmp(device, impl_map[i].
name)) {
785 impl = impl_map[i].impl;
789 impl = strtol(device,
NULL, 0);
803 mfxVersion ver = { { 3, 1 } };
821 else if (CONFIG_DXVA2)
837 handle_type = MFX_HANDLE_VA_DISPLAY;
838 handle = (mfxHDL)child_device_hwctx->display;
841 handle_type = MFX_HANDLE_D3D9_DEVICE_MANAGER;
842 handle = (mfxHDL)child_device_hwctx->
devmgr;
848 err = MFXInit(impl, &ver, &hwctx->
session);
849 if (err != MFX_ERR_NONE) {
854 err = MFXVideoCORE_SetHandle(hwctx->
session, handle_type, handle);
855 if (err != MFX_ERR_NONE)
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
static int qsv_init_child_ctx(AVHWFramesContext *ctx)
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
VAAPI-specific data associated with a frame pool.
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
static int qsv_frames_get_constraints(AVHWDeviceContext *ctx, const void *hwconfig, AVHWFramesConstraints *constraints)
mfxFrameSurface1 * surfaces_internal
int frame_type
A combination of MFX_MEMTYPE_* describing the frame pool.
mfxExtBuffer * ext_buffers[1]
This struct is allocated as AVHWFramesContext.hwctx.
Memory handling functions.
mfxHandleType handle_type
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
This struct is allocated as AVHWFramesContext.hwctx.
An API-specific header for AV_HWDEVICE_TYPE_DXVA2.
int width
The allocated dimensions of the frames in this pool.
enum AVPixelFormat format
The pixel format identifying the underlying HW surface type.
mfxHandleType handle_type
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int av_usleep(unsigned usec)
Sleep for a period of time.
static mfxStatus frame_alloc(mfxHDL pthis, mfxFrameAllocRequest *req, mfxFrameAllocResponse *resp)
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
static int qsv_init_pool(AVHWFramesContext *ctx, uint32_t fourcc)
API-specific header for AV_HWDEVICE_TYPE_VAAPI.
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame...
static int qsv_transfer_data_child(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
AVBufferPool * pool_internal
static int qsv_transfer_data_to(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
8 bits with AV_PIX_FMT_RGB32 palette
DWORD surface_type
The surface type (e.g.
enum AVHWDeviceType child_device_type
static int qsv_map_from(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src, int flags)
void * hwctx
The format-specific data, allocated and freed by libavutil along with this context.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int av_hwdevice_ctx_create(AVBufferRef **pdevice_ref, enum AVHWDeviceType type, const char *device, AVDictionary *opts, int flags)
Open a device of the specified type and create an AVHWDeviceContext for it.
#define AV_LOG_VERBOSE
Detailed information.
static mfxStatus frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
static int qsv_frames_init(AVHWFramesContext *ctx)
This struct is allocated as AVHWDeviceContext.hwctx.
static int qsv_get_buffer(AVHWFramesContext *ctx, AVFrame *frame)
int width
width and height of the video frame
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
void(* free)(struct AVHWDeviceContext *ctx)
This field may be set by the caller before calling av_hwdevice_ctx_init().
static int qsv_transfer_data_from(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
enum AVHWDeviceType device_type
static mfxStatus frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
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.
int av_hwframe_ctx_init(AVBufferRef *ref)
Finalize the context before use.
enum AVHWDeviceType type
This field identifies the underlying API used for hardware access.
static void * av_mallocz_array(size_t nmemb, size_t size)
static int qsv_transfer_get_formats(AVHWFramesContext *ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats)
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags)
Copy data to or from a hw surface.
int initial_pool_size
Initial size of the frame pool.
static mfxStatus frame_free(mfxHDL pthis, mfxFrameAllocResponse *resp)
AVHWDeviceContext * device_ctx
The parent AVHWDeviceContext.
mfxFrameSurface1 ** surface_ptrs
mfxSession session_download
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.
#define FF_ARRAY_ELEMS(a)
VADisplay display
The VADisplay handle, to be filled by the user.
static void qsv_frames_uninit(AVHWFramesContext *ctx)
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
AVBufferRef * av_hwdevice_ctx_alloc(enum AVHWDeviceType type)
Allocate an AVHWDeviceContext for a given hardware type.
static mfxStatus frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
const HWContextType ff_hwcontext_type_qsv
This struct describes the constraints on hardware frames attached to a given device with a hardware-s...
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
mfxFrameSurface1 * surfaces
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
uint8_t * data
The data buffer.
void * hwctx
The format-specific data, allocated and freed automatically along with this context.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
int av_hwdevice_ctx_init(AVBufferRef *ref)
Finalize the device context before use.
static int qsv_device_create(AVHWDeviceContext *ctx, const char *device, AVDictionary *opts, int flags)
static const struct @240 supported_pixel_formats[]
static int qsv_init_internal_session(AVHWFramesContext *ctx, mfxSession *session, int upload)
This struct describes a set or pool of "hardware" frames (i.e.
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
static mfxIMPL choose_implementation(const char *device)
refcounted data buffer API
enum AVPixelFormat * valid_hw_formats
A list of possible values for format in the hw_frames_ctx, terminated by AV_PIX_FMT_NONE.
mfxExtOpaqueSurfaceAlloc opaque_alloc
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer. ...
AVHWFramesInternal * internal
Private data used internally by libavutil.
static AVBufferRef * qsv_pool_alloc(void *opaque, int 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.
static void qsv_device_free(AVHWDeviceContext *ctx)
common internal and external API header
int av_hwframe_map(AVFrame *dst, const AVFrame *src, int flags)
Map a hardware frame.
AVBufferRef * av_hwframe_ctx_alloc(AVBufferRef *device_ref_in)
Allocate an AVHWFramesContext tied to a given device context.
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
static int qsv_device_init(AVHWDeviceContext *ctx)
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
enum AVPixelFormat child_pix_fmt
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.
enum AVPixelFormat * valid_sw_formats
A list of possible values for sw_format in the hw_frames_ctx, terminated by AV_PIX_FMT_NONE.
VAAPI connection details.
VASurfaceID * surface_ids
The surfaces IDs of all surfaces in the pool after creation.
An API-specific header for AV_HWDEVICE_TYPE_QSV.
AVBufferRef * child_device_ctx
AVBufferRef * child_frames_ref
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
#define av_malloc_array(a, b)
AVHWDeviceInternal * internal
Private data used internally by libavutil.
int depth
Number of bits in the component.
static void qsv_pool_release_dummy(void *opaque, uint8_t *data)
enum AVPixelFormat sw_format
The pixel format identifying the actual data layout of the hardware frames.
AVPixelFormat
Pixel format.
enum AVPixelFormat pix_fmt
mfxSession session_upload
static const struct @239 supported_handle_types[]