25 #include <sys/types.h>
27 #include <mfx/mfxvideo.h>
66 MFXVideoDECODE_Close(q->
session);
73 mfxVideoParam param = { { 0 } };
87 param.mfx.CodecId =
ret;
88 param.mfx.CodecProfile = avctx->
profile;
89 param.mfx.CodecLevel = avctx->
level;
91 param.mfx.FrameInfo.BitDepthLuma = 8;
92 param.mfx.FrameInfo.BitDepthChroma = 8;
93 param.mfx.FrameInfo.Shift = 0;
94 param.mfx.FrameInfo.FourCC = MFX_FOURCC_NV12;
97 param.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
104 ret = MFXVideoDECODE_Init(q->
session, ¶m);
209 mfxFrameSurface1 *insurf;
210 mfxFrameSurface1 *outsurf;
212 mfxBitstream bs = { { { 0 } } };
216 bs.Data = avpkt->
data;
217 bs.DataLength = avpkt->
size;
218 bs.MaxLength = bs.DataLength;
219 bs.TimeStamp = avpkt->
pts;
227 ret = MFXVideoDECODE_DecodeFrameAsync(q->
session, avpkt->
size ? &bs :
NULL,
228 insurf, &outsurf, &sync);
229 if (ret == MFX_WRN_DEVICE_BUSY)
232 }
while (ret == MFX_WRN_DEVICE_BUSY || ret == MFX_ERR_MORE_SURFACE);
234 if (ret != MFX_ERR_NONE &&
235 ret != MFX_ERR_MORE_DATA &&
236 ret != MFX_WRN_VIDEO_PARAM_CHANGED &&
237 ret != MFX_ERR_MORE_SURFACE) {
245 MFXVideoCORE_SyncOperation(q->
session, sync, 60000);
250 "The returned surface does not correspond to any frame\n");
258 frame->
pkt_pts = frame->
pts = outsurf->Data.TimeStamp;
261 outsurf->Info.PicStruct & MFX_PICSTRUCT_FRAME_TRIPLING ? 4 :
262 outsurf->Info.PicStruct & MFX_PICSTRUCT_FRAME_DOUBLING ? 2 :
263 outsurf->Info.PicStruct & MFX_PICSTRUCT_FIELD_REPEATED ? 1 : 0;
265 outsurf->Info.PicStruct & MFX_PICSTRUCT_FIELD_TFF;
267 !(outsurf->Info.PicStruct & MFX_PICSTRUCT_PROGRESSIVE);
272 return bs.DataOffset;
int ff_qsv_decode(AVCodecContext *avctx, QSVContext *q, AVFrame *frame, int *got_frame, AVPacket *avpkt)
This structure describes decoded (raw) audio or video data.
int coded_width
Bitstream width / height, may be different from width/height e.g.
int ff_qsv_decode_init(AVCodecContext *avctx, QSVContext *q, mfxSession session)
memory handling functions
int repeat_pict
When decoding, this signals how much the picture must be delayed.
mfxExtBuffer ** ext_buffers
mfxFrameSurface1 * surface
int av_usleep(unsigned usec)
Sleep for a period of time.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
int ff_qsv_decode_close(QSVContext *q)
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
int interlaced_frame
The content of the picture is interlaced.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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...
Libavcodec external API header.
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
int ff_qsv_codec_id_to_mfx(enum AVCodecID codec_id)
mfxFrameSurface1 surface_internal
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
mfxSession internal_session
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
main external API structure.
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
static int get_surface(AVCodecContext *avctx, QSVContext *q, mfxFrameSurface1 **surf)
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
int ff_qsv_init_internal_session(AVCodecContext *avctx, mfxSession *session)
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
static int qsv_init_session(AVCodecContext *avctx, QSVContext *q, mfxSession session)
static void qsv_clear_unused_frames(QSVContext *q)
int64_t pkt_pts
PTS copied from the AVPacket that was decoded to produce this frame.
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
common internal api header.
common internal and external API header
int ff_qsv_map_pixfmt(enum AVPixelFormat format)
int ff_qsv_error(int mfx_err)
Convert a libmfx error code into a ffmpeg error code.
static AVFrame * find_frame(QSVContext *q, mfxFrameSurface1 *surf)
int top_field_first
If the content is interlaced, is top field displayed first.
static int alloc_frame(AVCodecContext *avctx, QSVFrame *frame)
QSVFrame * work_frames
a linked list of frames currently being used by QSV
AVPixelFormat
Pixel format.
This structure stores compressed data.
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...