]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsvenc.h
Merge commit '7c65a76b16bc3a44f1592acde2176f187a058797'
[ffmpeg] / libavcodec / qsvenc.h
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)
49 #define QSV_HAVE_ICQ    QSV_VERSION_ATLEAST(1, 8)
50 #define QSV_HAVE_VCM    QSV_VERSION_ATLEAST(1, 8)
51 #define QSV_HAVE_QVBR   QSV_VERSION_ATLEAST(1, 11)
52 #else
53 #define QSV_HAVE_ICQ    0
54 #define QSV_HAVE_VCM    0
55 #define QSV_HAVE_QVBR   0
56 #endif
57
58 #define QSV_COMMON_OPTS \
59 { "async_depth", "Maximum processing parallelism", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 0, INT_MAX, VE },                          \
60 { "avbr_accuracy",    "Accuracy of the AVBR ratecontrol",    OFFSET(qsv.avbr_accuracy),    AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },                             \
61 { "avbr_convergence", "Convergence of the AVBR ratecontrol", OFFSET(qsv.avbr_convergence), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },                             \
62 { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, MFX_TARGETUSAGE_BEST_QUALITY, MFX_TARGETUSAGE_BEST_SPEED,   VE, "preset" }, \
63 { "veryfast",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED  },   INT_MIN, INT_MAX, VE, "preset" },                                                \
64 { "faster",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_6  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
65 { "fast",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_5  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
66 { "medium",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED  },     INT_MIN, INT_MAX, VE, "preset" },                                                \
67 { "slow",        NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_3  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
68 { "slower",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_2  },            INT_MIN, INT_MAX, VE, "preset" },                                                \
69 { "veryslow",    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY  }, INT_MIN, INT_MAX, VE, "preset" },                                                \
70 { "vcm",      "Use the video conferencing mode ratecontrol",  OFFSET(qsv.vcm),      AV_OPT_TYPE_INT, { .i64 = 0  },  0, 1,         VE },                                \
71 { "rdo",            "Enable rate distortion optimization",    OFFSET(qsv.rdo),            AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
72 { "max_frame_size", "Maximum encoded frame size in bytes",    OFFSET(qsv.max_frame_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE },                         \
73 { "max_slice_size", "Maximum encoded slice size in bytes",    OFFSET(qsv.max_slice_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE },                         \
74 { "bitrate_limit",  "Toggle bitrate limitations",             OFFSET(qsv.bitrate_limit),  AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
75 { "mbbrc",          "MB level bitrate control",               OFFSET(qsv.mbbrc),          AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
76 { "extbrc",         "Extended bitrate control",               OFFSET(qsv.extbrc),         AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
77 { "adaptive_i",     "Adaptive I-frame placement",             OFFSET(qsv.adaptive_i),     AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
78 { "adaptive_b",     "Adaptive B-frame placement",             OFFSET(qsv.adaptive_b),     AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
79 { "b_strategy",     "Strategy to choose between I/P/B-frames", OFFSET(qsv.b_strategy),    AV_OPT_TYPE_INT, { .i64 = -1 }, -1,          1, VE },                         \
80
81 typedef int SetEncodeCtrlCB (AVCodecContext *avctx,
82                              const AVFrame *frame, mfxEncodeCtrl* enc_ctrl);
83 typedef struct QSVEncContext {
84     AVCodecContext *avctx;
85
86     QSVFrame *work_frames;
87
88     mfxSession session;
89     mfxSession internal_session;
90
91     int packet_size;
92     int width_align;
93     int height_align;
94
95     mfxVideoParam param;
96     mfxFrameAllocRequest req;
97
98     mfxExtCodingOption  extco;
99 #if QSV_HAVE_CO2
100     mfxExtCodingOption2 extco2;
101 #endif
102
103     mfxExtOpaqueSurfaceAlloc opaque_alloc;
104     mfxFrameSurface1       **opaque_surfaces;
105     AVBufferRef             *opaque_alloc_buf;
106
107     mfxExtBuffer  *extparam_internal[2 + QSV_HAVE_CO2];
108     int         nb_extparam_internal;
109
110     mfxExtBuffer **extparam;
111
112     AVFifoBuffer *async_fifo;
113
114     QSVFramesContext frames_ctx;
115
116     // options set by the caller
117     int async_depth;
118     int idr_interval;
119     int profile;
120     int preset;
121     int avbr_accuracy;
122     int avbr_convergence;
123     int pic_timing_sei;
124     int look_ahead;
125     int look_ahead_depth;
126     int look_ahead_downsampling;
127     int vcm;
128     int rdo;
129     int max_frame_size;
130     int max_slice_size;
131
132     int single_sei_nal_unit;
133     int max_dec_frame_buffering;
134     int trellis;
135
136     int bitrate_limit;
137     int mbbrc;
138     int extbrc;
139     int adaptive_i;
140     int adaptive_b;
141     int b_strategy;
142     int cavlc;
143
144     int int_ref_type;
145     int int_ref_cycle_size;
146     int int_ref_qp_delta;
147     int recovery_point_sei;
148
149     int a53_cc;
150     char *load_plugins;
151     SetEncodeCtrlCB *set_encode_ctrl_cb;
152 } QSVEncContext;
153
154 int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q);
155
156 int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q,
157                   AVPacket *pkt, const AVFrame *frame, int *got_packet);
158
159 int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q);
160
161 #endif /* AVCODEC_QSVENC_H */