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