FFmpeg
qsv_internal.h
Go to the documentation of this file.
1 /*
2  * Intel MediaSDK QSV encoder/decoder shared code
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVCODEC_QSV_INTERNAL_H
22 #define AVCODEC_QSV_INTERNAL_H
23 
24 #include "config.h"
25 
26 #if CONFIG_VAAPI
27 #define AVCODEC_QSV_LINUX_SESSION_HANDLE
28 #endif //CONFIG_VAAPI
29 
30 #ifdef AVCODEC_QSV_LINUX_SESSION_HANDLE
31 #include <stdio.h>
32 #include <string.h>
33 #if HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36 #include <fcntl.h>
37 #include <va/va.h>
38 #include <va/va_drm.h>
40 #endif
41 
42 #include <mfx/mfxvideo.h>
43 
44 #include "libavutil/frame.h"
45 
46 #include "avcodec.h"
47 
48 #define QSV_VERSION_MAJOR 1
49 #define QSV_VERSION_MINOR 1
50 
51 #define ASYNC_DEPTH_DEFAULT 4 // internal parallelism
52 
53 #define QSV_MAX_ENC_PAYLOAD 2 // # of mfxEncodeCtrl payloads supported
54 #define QSV_MAX_ENC_EXTPARAM 2
55 
56 #define QSV_MAX_ROI_NUM 256
57 
58 #define QSV_MAX_FRAME_EXT_PARAMS 4
59 
60 #define QSV_VERSION_ATLEAST(MAJOR, MINOR) \
61  (MFX_VERSION_MAJOR > (MAJOR) || \
62  MFX_VERSION_MAJOR == (MAJOR) && MFX_VERSION_MINOR >= (MINOR))
63 
64 #define QSV_RUNTIME_VERSION_ATLEAST(MFX_VERSION, MAJOR, MINOR) \
65  ((MFX_VERSION.Major > (MAJOR)) || \
66  (MFX_VERSION.Major == (MAJOR) && MFX_VERSION.Minor >= (MINOR)))
67 
68 typedef struct QSVMid {
70  mfxHDLPair *handle_pair;
71 
74  mfxFrameSurface1 surf;
75 } QSVMid;
76 
77 typedef struct QSVFrame {
79  mfxFrameSurface1 surface;
80  mfxEncodeCtrl enc_ctrl;
81  mfxExtDecodedFrameInfo dec_info;
82 #if QSV_VERSION_ATLEAST(1, 34)
83  mfxExtAV1FilmGrainParam av1_film_grain_param;
84 #endif
87 
88  mfxPayload *payloads[QSV_MAX_ENC_PAYLOAD]; ///< used for enc_ctrl.Payload
89  mfxExtBuffer *extparam[QSV_MAX_ENC_EXTPARAM]; ///< used for enc_ctrl.ExtParam
90 
91  int queued;
92  int used;
93 
94  struct QSVFrame *next;
95 } QSVFrame;
96 
97 typedef struct QSVSession {
98  mfxSession session;
99 #ifdef AVCODEC_QSV_LINUX_SESSION_HANDLE
100  AVBufferRef *va_device_ref;
101  AVHWDeviceContext *va_device_ctx;
102 #endif
103 } QSVSession;
104 
105 typedef struct QSVFramesContext {
107  void *logctx;
108 
109  /* The memory ids for the external frames.
110  * Refcounted, since we need one reference owned by the QSVFramesContext
111  * (i.e. by the encoder/decoder) and another one given to the MFX session
112  * from the frame allocator. */
115  int nb_mids;
117 
118 int ff_qsv_print_iopattern(void *log_ctx, int mfx_iopattern,
119  const char *extra_string);
120 
121 int ff_qsv_print_error(void *log_ctx, mfxStatus err,
122  const char *error_string);
123 
124 int ff_qsv_print_warning(void *log_ctx, mfxStatus err,
125  const char *warning_string);
126 
128 
129 enum AVPixelFormat ff_qsv_map_fourcc(uint32_t fourcc);
130 
131 int ff_qsv_map_pixfmt(enum AVPixelFormat format, uint32_t *fourcc);
132 enum AVPictureType ff_qsv_map_pictype(int mfx_pic_type);
133 
134 enum AVFieldOrder ff_qsv_map_picstruct(int mfx_pic_struct);
135 
137  const char *load_plugins, int gpu_copy);
138 
140 
141 int ff_qsv_init_session_device(AVCodecContext *avctx, mfxSession *psession,
142  AVBufferRef *device_ref, const char *load_plugins,
143  int gpu_copy);
144 
145 int ff_qsv_init_session_frames(AVCodecContext *avctx, mfxSession *session,
146  QSVFramesContext *qsv_frames_ctx,
147  const char *load_plugins, int opaque, int gpu_copy);
148 
150 
152  mfxExtBuffer *param);
153 
154 int ff_qsv_map_frame_to_surface(const AVFrame *frame, mfxFrameSurface1 *surface);
155 
156 
157 #endif /* AVCODEC_QSV_INTERNAL_H */
QSV_MAX_FRAME_EXT_PARAMS
#define QSV_MAX_FRAME_EXT_PARAMS
Definition: qsv_internal.h:58
ff_qsv_map_pictype
enum AVPictureType ff_qsv_map_pictype(int mfx_pic_type)
Definition: qsv.c:294
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
ff_qsv_print_iopattern
int ff_qsv_print_iopattern(void *log_ctx, int mfx_iopattern, const char *extra_string)
Definition: qsv.c:85
QSVFramesContext::nb_mids
int nb_mids
Definition: qsv_internal.h:115
QSVFramesContext::hw_frames_ctx
AVBufferRef * hw_frames_ctx
Definition: qsv_internal.h:106
QSVMid::locked_frame
AVFrame * locked_frame
Definition: qsv_internal.h:72
AVPictureType
AVPictureType
Definition: avutil.h:272
QSVFrame::extparam
mfxExtBuffer * extparam[QSV_MAX_ENC_EXTPARAM]
used for enc_ctrl.ExtParam
Definition: qsv_internal.h:89
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:325
QSVFrame::ext_param
mfxExtBuffer * ext_param[QSV_MAX_FRAME_EXT_PARAMS]
Definition: qsv_internal.h:85
QSVFrame::frame
AVFrame * frame
Definition: qsv_internal.h:78
QSVFrame::used
int used
Definition: qsv_internal.h:92
QSVFrame::enc_ctrl
mfxEncodeCtrl enc_ctrl
Definition: qsv_internal.h:80
QSVFrame::num_ext_params
int num_ext_params
Definition: qsv_internal.h:86
ff_qsv_init_internal_session
int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs, const char *load_plugins, int gpu_copy)
Definition: qsv.c:407
AVHWDeviceContext
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
Definition: hwcontext.h:61
ff_qsv_init_session_frames
int ff_qsv_init_session_frames(AVCodecContext *avctx, mfxSession *session, QSVFramesContext *qsv_frames_ctx, const char *load_plugins, int opaque, int gpu_copy)
Definition: qsv.c:804
ff_qsv_map_picstruct
enum AVFieldOrder ff_qsv_map_picstruct(int mfx_pic_struct)
Definition: qsv.c:276
QSVMid::hw_frame
AVFrame * hw_frame
Definition: qsv_internal.h:73
format
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample format(the sample packing is implied by the sample format) and sample rate. The lists are not just lists
ff_qsv_map_pixfmt
int ff_qsv_map_pixfmt(enum AVPixelFormat format, uint32_t *fourcc)
Definition: qsv.c:194
ctx
AVFormatContext * ctx
Definition: movenc.c:48
codec_id
enum AVCodecID codec_id
Definition: vaapi_decode.c:371
ff_qsv_codec_id_to_mfx
int ff_qsv_codec_id_to_mfx(enum AVCodecID codec_id)
Definition: qsv.c:43
QSVFrame
Definition: qsv_internal.h:77
QSVFrame::payloads
mfxPayload * payloads[QSV_MAX_ENC_PAYLOAD]
used for enc_ctrl.Payload
Definition: qsv_internal.h:88
QSVFrame::surface
mfxFrameSurface1 surface
Definition: qsv_internal.h:79
QSVFramesContext::mids_buf
AVBufferRef * mids_buf
Definition: qsv_internal.h:113
ff_qsv_print_warning
int ff_qsv_print_warning(void *log_ctx, mfxStatus err, const char *warning_string)
Definition: qsv.c:169
AVCodecID
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: codec_id.h:47
QSV_MAX_ENC_EXTPARAM
#define QSV_MAX_ENC_EXTPARAM
Definition: qsv_internal.h:54
QSVMid::hw_frames_ref
AVBufferRef * hw_frames_ref
Definition: qsv_internal.h:69
ff_qsv_init_session_device
int ff_qsv_init_session_device(AVCodecContext *avctx, mfxSession *psession, AVBufferRef *device_ref, const char *load_plugins, int gpu_copy)
Definition: qsv.c:724
frame.h
mfx_iopattern
int mfx_iopattern
Definition: qsv.c:74
QSVMid::handle_pair
mfxHDLPair * handle_pair
Definition: qsv_internal.h:70
ff_qsv_find_surface_idx
int ff_qsv_find_surface_idx(QSVFramesContext *ctx, QSVFrame *frame)
Definition: qsv.c:263
QSVFramesContext::mids
QSVMid * mids
Definition: qsv_internal.h:114
QSVMid::surf
mfxFrameSurface1 surf
Definition: qsv_internal.h:74
avcodec.h
hwcontext_vaapi.h
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
QSVFrame::queued
int queued
Definition: qsv_internal.h:91
QSVSession
Definition: qsv_internal.h:97
ff_qsv_map_frame_to_surface
int ff_qsv_map_frame_to_surface(const AVFrame *frame, mfxFrameSurface1 *surface)
Definition: qsv.c:227
AVCodecContext
main external API structure.
Definition: avcodec.h:389
ff_qsv_map_fourcc
enum AVPixelFormat ff_qsv_map_fourcc(uint32_t fourcc)
Definition: qsv.c:178
QSVSession::session
mfxSession session
Definition: qsv_internal.h:98
QSV_MAX_ENC_PAYLOAD
#define QSV_MAX_ENC_PAYLOAD
Definition: qsv_internal.h:53
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
QSVFrame::dec_info
mfxExtDecodedFrameInfo dec_info
Definition: qsv_internal.h:81
ff_qsv_print_error
int ff_qsv_print_error(void *log_ctx, mfxStatus err, const char *error_string)
Definition: qsv.c:160
QSVFramesContext::logctx
void * logctx
Definition: qsv_internal.h:107
AVFieldOrder
AVFieldOrder
Definition: codec_par.h:37
QSVFramesContext
Definition: qsv_internal.h:105
QSVFrame::next
struct QSVFrame * next
Definition: qsv_internal.h:94
QSVMid
Definition: qsv_internal.h:68
fourcc
uint32_t fourcc
Definition: vaapi_decode.c:241
ff_qsv_frame_add_ext_param
void ff_qsv_frame_add_ext_param(AVCodecContext *avctx, QSVFrame *frame, mfxExtBuffer *param)
Definition: qsv.c:863
ff_qsv_close_internal_session
int ff_qsv_close_internal_session(QSVSession *qs)
Definition: qsv.c:851