FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
qsvenc_h264.c
Go to the documentation of this file.
1 /*
2  * Intel MediaSDK QSV based H.264 enccoder
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 
24 #include <stdint.h>
25 #include <sys/types.h>
26 
27 #include <mfx/mfxvideo.h>
28 
29 #include "libavutil/opt.h"
30 
31 #include "avcodec.h"
32 #include "internal.h"
33 #include "h264.h"
34 #include "qsv.h"
35 #include "qsv_internal.h"
36 #include "qsvenc.h"
37 
38 typedef struct QSVH264EncContext {
39  AVClass *class;
42 
44  const AVFrame *frame, mfxEncodeCtrl* enc_ctrl)
45 {
46  AVFrameSideData *side_data = NULL;
47  QSVH264EncContext *qh264 = avctx->priv_data;
48  QSVEncContext *q = &qh264->qsv;
49 
50  if (q->a53_cc && frame) {
51  side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
52  if (side_data) {
53 
54  int sei_payload_size = 0;
55  mfxU8* sei_data = NULL;
56  mfxPayload* payload = NULL;
57 
58  sei_payload_size = side_data->size + 13;
59 
60  sei_data = av_mallocz(sei_payload_size);
61  if (!sei_data) {
62  av_log(avctx, AV_LOG_ERROR, "No memory for CC, skipping...\n");
63  return AVERROR(ENOMEM);
64  }
65 
66  // SEI header
67  sei_data[0] = 4;
68  sei_data[1] = sei_payload_size - 2; // size of SEI data
69 
70  // country code
71  sei_data[2] = 181;
72  sei_data[3] = 0;
73  sei_data[4] = 49;
74 
75  // ATSC_identifier - using 'GA94' only
76  AV_WL32(sei_data + 5,
77  MKTAG('G', 'A', '9', '4'));
78  sei_data[9] = 3;
79  sei_data[10] =
80  ((side_data->size/3) & 0x1f) | 0xC0;
81 
82  sei_data[11] = 0xFF; // reserved
83 
84  memcpy(sei_data + 12, side_data->data, side_data->size);
85 
86  sei_data[side_data->size+12] = 255;
87 
88  payload = av_mallocz(sizeof(mfxPayload));
89  if (!payload) {
90  av_log(avctx, AV_LOG_ERROR, "No memory, skipping captions\n");
91  av_freep(&sei_data);
92  return AVERROR(ENOMEM);
93  }
94  payload->BufSize = side_data->size + 13;
95  payload->NumBit = payload->BufSize * 8;
96  payload->Type = 4;
97  payload->Data = sei_data;
98 
99  enc_ctrl->NumExtParam = 0;
100  enc_ctrl->NumPayload = 1;
101  enc_ctrl->Payload[0] = payload;
102  }
103  }
104  return 0;
105 }
106 
108 {
109  QSVH264EncContext *q = avctx->priv_data;
110 
112  return ff_qsv_enc_init(avctx, &q->qsv);
113 }
114 
116  const AVFrame *frame, int *got_packet)
117 {
118  QSVH264EncContext *q = avctx->priv_data;
119 
120  return ff_qsv_encode(avctx, &q->qsv, pkt, frame, got_packet);
121 }
122 
124 {
125  QSVH264EncContext *q = avctx->priv_data;
126 
127  return ff_qsv_enc_close(avctx, &q->qsv);
128 }
129 
130 #define OFFSET(x) offsetof(QSVH264EncContext, x)
131 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
132 static const AVOption options[] = {
134 
135  { "idr_interval", "Distance (in I-frames) between IDR frames", OFFSET(qsv.idr_interval), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
136  { "pic_timing_sei", "Insert picture timing SEI with pic_struct_syntax element", OFFSET(qsv.pic_timing_sei), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
137  { "single_sei_nal_unit", "Put all the SEI messages into one NALU", OFFSET(qsv.single_sei_nal_unit), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
138  { "max_dec_frame_buffering", "Maximum number of frames buffered in the DPB", OFFSET(qsv.max_dec_frame_buffering), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, UINT16_MAX, VE },
139 
140 #if QSV_HAVE_LA
141  { "look_ahead", "Use VBR algorithm with look ahead", OFFSET(qsv.look_ahead), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
142  { "look_ahead_depth", "Depth of look ahead in number frames", OFFSET(qsv.look_ahead_depth), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 100, VE },
143 #endif
144 
145 #if QSV_VERSION_ATLEAST(1,8)
146  { "look_ahead_downsampling", NULL, OFFSET(qsv.look_ahead_downsampling), AV_OPT_TYPE_INT, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, MFX_LOOKAHEAD_DS_UNKNOWN, MFX_LOOKAHEAD_DS_2x, VE, "look_ahead_downsampling" },
147  { "unknown" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, INT_MIN, INT_MAX, VE, "look_ahead_downsampling" },
148  { "off" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_OFF }, INT_MIN, INT_MAX, VE, "look_ahead_downsampling" },
149  { "2x" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_2x }, INT_MIN, INT_MAX, VE, "look_ahead_downsampling" },
150 #endif
151 
152  { "int_ref_type", "Intra refresh type", OFFSET(qsv.int_ref_type), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE, "int_ref_type" },
153  { "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, .flags = VE, "int_ref_type" },
154  { "vertical", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, .flags = VE, "int_ref_type" },
155  { "int_ref_cycle_size", "Number of frames in the intra refresh cycle", OFFSET(qsv.int_ref_cycle_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX, VE },
156  { "int_ref_qp_delta", "QP difference for the refresh MBs", OFFSET(qsv.int_ref_qp_delta), AV_OPT_TYPE_INT, { .i64 = INT16_MIN }, INT16_MIN, INT16_MAX, VE },
157  { "recovery_point_sei", "Insert recovery point SEI messages", OFFSET(qsv.recovery_point_sei), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
158 
159  { "trellis", "Trellis quantization", OFFSET(qsv.trellis), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, 0, UINT_MAX, VE, "trellis" },
160  { "off", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TRELLIS_OFF }, .flags = VE, "trellis" },
161  { "I", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TRELLIS_I }, .flags = VE, "trellis" },
162  { "P", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TRELLIS_P }, .flags = VE, "trellis" },
163  { "B", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TRELLIS_B }, .flags = VE, "trellis" },
164 
165  { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" },
166  { "unknown" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN }, INT_MIN, INT_MAX, VE, "profile" },
167  { "baseline", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_BASELINE }, INT_MIN, INT_MAX, VE, "profile" },
168  { "main" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_MAIN }, INT_MIN, INT_MAX, VE, "profile" },
169  { "high" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_HIGH }, INT_MIN, INT_MAX, VE, "profile" },
170 
171  { "a53cc" , "Use A53 Closed Captions (if available)", OFFSET(qsv.a53_cc), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, VE},
172  { NULL },
173 };
174 
175 static const AVClass class = {
176  .class_name = "h264_qsv encoder",
177  .item_name = av_default_item_name,
178  .option = options,
180 };
181 
183  { "b", "1M" },
184  { "refs", "0" },
185  // same as the x264 default
186  { "g", "250" },
187  { "bf", "3" },
188  { "coder", "ac" },
189 
190  { "flags", "+cgop" },
191 #if FF_API_PRIVATE_OPT
192  { "b_strategy", "-1" },
193 #endif
194  { NULL },
195 };
196 
198  .name = "h264_qsv",
199  .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (Intel Quick Sync Video acceleration)"),
200  .priv_data_size = sizeof(QSVH264EncContext),
202  .id = AV_CODEC_ID_H264,
203  .init = qsv_enc_init,
204  .encode2 = qsv_enc_frame,
205  .close = qsv_enc_close,
206  .capabilities = AV_CODEC_CAP_DELAY,
207  .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
209  AV_PIX_FMT_NONE },
210  .priv_class = &class,
211  .defaults = qsv_enc_defaults,
212  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
213 };
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
#define NULL
Definition: coverity.c:32
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
AVOption.
Definition: opt.h:245
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static AVPacket pkt
AVCodec.
Definition: avcodec.h:3392
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:637
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:881
int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: qsvenc.c:995
#define av_cold
Definition: attributes.h:82
AVOptions.
static const AVCodecDefault qsv_enc_defaults[]
Definition: qsvenc_h264.c:182
static AVFrame * frame
Structure to hold side data for an AVFrame.
Definition: frame.h:144
#define QSV_COMMON_OPTS
Definition: qsvenc.h:50
int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
Definition: qsvenc.c:1063
#define av_log(a,...)
static const AVOption options[]
Definition: qsvenc_h264.c:132
H.264 / AVC / MPEG4 part10 codec.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
ATSC A53 Part 4 Closed Captions.
Definition: frame.h:58
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:91
const char * name
Name of the codec implementation.
Definition: avcodec.h:3399
AVCodec ff_h264_qsv_encoder
Definition: qsvenc_h264.c:197
int a53_cc
Definition: qsvenc.h:138
QSVEncContext qsv
Definition: qsvenc_h264.c:40
Libavcodec external API header.
static int qsv_h264_set_encode_ctrl(AVCodecContext *avctx, const AVFrame *frame, mfxEncodeCtrl *enc_ctrl)
Definition: qsvenc_h264.c:43
main external API structure.
Definition: avcodec.h:1532
uint8_t * data
Definition: frame.h:146
GLint GLenum type
Definition: opengl_enc.c:105
Describe the class of an AVClass context structure.
Definition: log.h:67
int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
Definition: qsvenc.c:670
HW acceleration through QSV, data[3] contains a pointer to the mfxFrameSurface1 structure.
Definition: pixfmt.h:236
static int qsv_enc_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: qsvenc_h264.c:115
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
static av_cold int qsv_enc_init(AVCodecContext *avctx)
Definition: qsvenc_h264.c:107
common internal api header.
void * priv_data
Definition: avcodec.h:1574
#define VE
Definition: qsvenc_h264.c:131
#define OFFSET(x)
Definition: qsvenc_h264.c:130
#define av_freep(p)
static av_cold int qsv_enc_close(AVCodecContext *avctx)
Definition: qsvenc_h264.c:123
#define MKTAG(a, b, c, d)
Definition: common.h:342
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1444
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
SetEncodeCtrlCB * set_encode_ctrl_cb
Definition: qsvenc.h:140