FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
qsvenc.h
Go to the documentation of this file.
1 /*
2  * Intel MediaSDK QSV encoder utility functions
3  *
4  * copyright (c) 2013 Yukinori Yamazoe
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #ifndef AVCODEC_QSVENC_H
24 #define AVCODEC_QSVENC_H
25 
26 #include <stdint.h>
27 #include <sys/types.h>
28 
29 #include <mfx/mfxvideo.h>
30 
31 #include "libavutil/avutil.h"
32 #include "libavutil/fifo.h"
33 
34 #include "avcodec.h"
35 #include "qsv_internal.h"
36 
37 #define QSV_HAVE_CO2 QSV_VERSION_ATLEAST(1, 6)
38 #define QSV_HAVE_CO3 QSV_VERSION_ATLEAST(1, 11)
39 
40 #define QSV_HAVE_TRELLIS QSV_VERSION_ATLEAST(1, 8)
41 #define QSV_HAVE_MAX_SLICE_SIZE QSV_VERSION_ATLEAST(1, 9)
42 #define QSV_HAVE_BREF_TYPE QSV_VERSION_ATLEAST(1, 8)
43 
44 #define QSV_HAVE_LA QSV_VERSION_ATLEAST(1, 7)
45 #define QSV_HAVE_LA_DS QSV_VERSION_ATLEAST(1, 8)
46 #define QSV_HAVE_LA_HRD QSV_VERSION_ATLEAST(1, 11)
47 
48 #if defined(_WIN32) || defined(__CYGWIN__)
49 #define QSV_HAVE_AVBR QSV_VERSION_ATLEAST(1, 3)
50 #define QSV_HAVE_ICQ QSV_VERSION_ATLEAST(1, 8)
51 #define QSV_HAVE_VCM QSV_VERSION_ATLEAST(1, 8)
52 #define QSV_HAVE_QVBR QSV_VERSION_ATLEAST(1, 11)
53 #define QSV_HAVE_MF 0
54 #else
55 #define QSV_HAVE_AVBR 0
56 #define QSV_HAVE_ICQ 0
57 #define QSV_HAVE_VCM 0
58 #define QSV_HAVE_QVBR 0
59 #define QSV_HAVE_MF QSV_VERSION_ATLEAST(1, 25)
60 #endif
61 
62 #if !QSV_HAVE_LA_DS
63 #define MFX_LOOKAHEAD_DS_UNKNOWN 0
64 #define MFX_LOOKAHEAD_DS_OFF 0
65 #define MFX_LOOKAHEAD_DS_2x 0
66 #define MFX_LOOKAHEAD_DS_4x 0
67 #endif
68 
69 #define QSV_COMMON_OPTS \
70 { "async_depth", "Maximum processing parallelism", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 1, INT_MAX, VE }, \
71 { "avbr_accuracy", "Accuracy of the AVBR ratecontrol", OFFSET(qsv.avbr_accuracy), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, \
72 { "avbr_convergence", "Convergence of the AVBR ratecontrol", OFFSET(qsv.avbr_convergence), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE }, \
73 { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, MFX_TARGETUSAGE_BEST_QUALITY, MFX_TARGETUSAGE_BEST_SPEED, VE, "preset" }, \
74 { "veryfast", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED }, INT_MIN, INT_MAX, VE, "preset" }, \
75 { "faster", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_6 }, INT_MIN, INT_MAX, VE, "preset" }, \
76 { "fast", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_5 }, INT_MIN, INT_MAX, VE, "preset" }, \
77 { "medium", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED }, INT_MIN, INT_MAX, VE, "preset" }, \
78 { "slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_3 }, INT_MIN, INT_MAX, VE, "preset" }, \
79 { "slower", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_2 }, INT_MIN, INT_MAX, VE, "preset" }, \
80 { "veryslow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY }, INT_MIN, INT_MAX, VE, "preset" }, \
81 { "rdo", "Enable rate distortion optimization", OFFSET(qsv.rdo), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
82 { "max_frame_size", "Maximum encoded frame size in bytes", OFFSET(qsv.max_frame_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE }, \
83 { "max_slice_size", "Maximum encoded slice size in bytes", OFFSET(qsv.max_slice_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE }, \
84 { "bitrate_limit", "Toggle bitrate limitations", OFFSET(qsv.bitrate_limit), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
85 { "mbbrc", "MB level bitrate control", OFFSET(qsv.mbbrc), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
86 { "extbrc", "Extended bitrate control", OFFSET(qsv.extbrc), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
87 { "adaptive_i", "Adaptive I-frame placement", OFFSET(qsv.adaptive_i), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
88 { "adaptive_b", "Adaptive B-frame placement", OFFSET(qsv.adaptive_b), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
89 { "b_strategy", "Strategy to choose between I/P/B-frames", OFFSET(qsv.b_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE }, \
90 
91 typedef int SetEncodeCtrlCB (AVCodecContext *avctx,
92  const AVFrame *frame, mfxEncodeCtrl* enc_ctrl);
93 typedef struct QSVEncContext {
95 
97 
98  mfxSession session;
99  mfxSession internal_session;
100 
104 
105  mfxVideoParam param;
106  mfxFrameAllocRequest req;
107 
108  mfxExtCodingOption extco;
109 #if QSV_HAVE_CO2
110  mfxExtCodingOption2 extco2;
111 #endif
112 #if QSV_HAVE_MF
113  mfxExtMultiFrameParam extmfp;
114  mfxExtMultiFrameControl extmfc;
115 #endif
116  mfxExtOpaqueSurfaceAlloc opaque_alloc;
117  mfxFrameSurface1 **opaque_surfaces;
119 
120  mfxExtBuffer *extparam_internal[2 + QSV_HAVE_CO2 + (QSV_HAVE_MF * 2)];
122 
123  mfxExtBuffer **extparam;
124 
126 
128 
129  // options set by the caller
132  int profile;
133  int preset;
140  int vcm;
141  int rdo;
144 
145  int aud;
146 
149  int trellis;
150 
152  int mbbrc;
153  int extbrc;
157  int cavlc;
158 
163 
164  int a53_cc;
165 
166 #if QSV_HAVE_MF
167  int mfmode;
168 #endif
171 } QSVEncContext;
172 
174 
176  AVPacket *pkt, const AVFrame *frame, int *got_packet);
177 
179 
180 #endif /* AVCODEC_QSVENC_H */
int single_sei_nal_unit
Definition: qsvenc.h:147
AVBufferRef * opaque_alloc_buf
Definition: qsvenc.h:118
This structure describes decoded (raw) audio or video data.
Definition: frame.h:226
mfxExtBuffer ** extparam
Definition: qsvenc.h:123
int int_ref_type
Definition: qsvenc.h:159
mfxExtOpaqueSurfaceAlloc opaque_alloc
Definition: qsvenc.h:116
int max_frame_size
Definition: qsvenc.h:142
mfxFrameAllocRequest req
Definition: qsvenc.h:106
int avbr_accuracy
Definition: qsvenc.h:134
QSVFrame * work_frames
Definition: qsvenc.h:96
int look_ahead_depth
Definition: qsvenc.h:138
int int_ref_qp_delta
Definition: qsvenc.h:161
Convenience header that includes libavutil's core.
QSVFramesContext frames_ctx
Definition: qsvenc.h:127
int packet_size
Definition: qsvenc.h:101
static AVPacket pkt
mfxSession internal_session
Definition: qsvenc.h:99
int bitrate_limit
Definition: qsvenc.h:151
int look_ahead
Definition: qsvenc.h:137
int SetEncodeCtrlCB(AVCodecContext *avctx, const AVFrame *frame, mfxEncodeCtrl *enc_ctrl)
Definition: qsvenc.h:91
mfxVideoParam param
Definition: qsvenc.h:105
#define QSV_HAVE_CO2
Definition: qsvenc.h:37
AVFifoBuffer * async_fifo
Definition: qsvenc.h:125
mfxExtCodingOption extco
Definition: qsvenc.h:108
static AVFrame * frame
mfxFrameSurface1 ** opaque_surfaces
Definition: qsvenc.h:117
int b_strategy
Definition: qsvenc.h:156
int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: qsvenc.c:1291
char * load_plugins
Definition: qsvenc.h:169
int nb_extparam_internal
Definition: qsvenc.h:121
int max_dec_frame_buffering
Definition: qsvenc.h:148
int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
Definition: qsvenc.c:1377
int adaptive_i
Definition: qsvenc.h:154
AVCodecContext * avctx
Definition: qsvenc.h:94
int idr_interval
Definition: qsvenc.h:131
int a53_cc
Definition: qsvenc.h:164
int extbrc
Definition: qsvenc.h:153
int preset
Definition: qsvenc.h:133
int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
Definition: qsvenc.c:886
int async_depth
Definition: qsvenc.h:130
int width_align
Definition: qsvenc.h:102
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1533
int profile
Definition: qsvenc.h:132
a very simple circular buffer FIFO implementation
int height_align
Definition: qsvenc.h:103
int max_slice_size
Definition: qsvenc.h:143
int int_ref_cycle_size
Definition: qsvenc.h:160
int adaptive_b
Definition: qsvenc.h:155
A reference to a data buffer.
Definition: buffer.h:81
int avbr_convergence
Definition: qsvenc.h:135
int recovery_point_sei
Definition: qsvenc.h:162
#define QSV_HAVE_MF
Definition: qsvenc.h:59
int look_ahead_downsampling
Definition: qsvenc.h:139
mfxExtBuffer * extparam_internal[2+QSV_HAVE_CO2+(QSV_HAVE_MF *2)]
Definition: qsvenc.h:120
int trellis
Definition: qsvenc.h:149
This structure stores compressed data.
Definition: avcodec.h:1422
mfxSession session
Definition: qsvenc.h:98
int pic_timing_sei
Definition: qsvenc.h:136
SetEncodeCtrlCB * set_encode_ctrl_cb
Definition: qsvenc.h:170